Android广播接收器里弹出对话框

Posted itdevin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android广播接收器里弹出对话框相关的知识,希望对你有一定的参考价值。

不多说,直接上车。。。

 1 public class MyReceiver extends BroadcastReceiver {
 2     @Override
 3     public void onReceive(final Context context, Intent intent) {
 4         AlertDialog.Builder builder = new AlertDialog.Builder(context);
 5         builder.setTitle("提示");
 6         builder.setMessage("确定打开主界面吗?");       
 7         builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
 8             @Override
 9             public void onClick(DialogInterface dialog, int which) {
10                 Intent intent1 = new Intent(context, MainActivity.class);
11 
12                 //在广播接收器中启动活动,一定要给Intent加入FLAG_ACTIVITY_NEW_TASK标志
13                 intent1.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
14                 context.startActivity(intent1);
15             }
16         });
17 
18         AlertDialog dialog = builder.create();
19 
20         //需要把对话框的类型设为TYPE_SYSTEM_ALERT,否则对话框无法在广播接收器里弹出
21         dialog.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);
22         dialog.show();
23     }
24 }

注意:把对话框的类型设为了TYPE_SYSTEM_ALERT, 这样弹出的就是一个系统级别的对话框,因此必须声明android.permission.SYSTEM_ALERT_WINDOW权限。最后不要忘记注册广播接收器哦。

以上是关于Android广播接收器里弹出对话框的主要内容,如果未能解决你的问题,请参考以下文章

安卓两个小知识点的积累

Windows服务(system权限)程序显示界面与用户交互,Session0通知Session1里弹出对话框(真的很牛) good

记一次在广播(BroadcastReceiver)或服务(Service)里弹窗的“完美”实践

android 广播自定义广播接收问题

android8-android10静态广播收到到

Android - 在动态注册的广播接收器上出现“无法传递广播”错误