How to setup Alertbox from BroadcastReceiver

前端 未结 4 1076
面向向阳花
面向向阳花 2020-11-30 15:32

I have implemented alarm in android app. Alarm is working fine. Toast message is visible. Now I want to make Alert Box Notification to user.

4条回答
  •  抹茶落季
    2020-11-30 16:17

    You can try to show dialog with sytem alert attributes:

    YourAlertDialog dialog = new YourAlertDialog(mContext);
    dialog.getWindow()
            .setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);
    dialog.show();
    

    And Add system alert permission in your mainfest.xml:

    
    
    

提交回复
热议问题