博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android service里面启动activity和alertdialog .
阅读量:5015 次
发布时间:2019-06-12

本文共 995 字,大约阅读时间需要 3 分钟。

启动activity源码:(记得要加上Intent.FLAG_ACTIVITY_NEW_TASK)

  1. Intent intent = new Intent();
  2. intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  3. intent.setClass(getApplicationContext(),FileBrowserActivity.class);
  4. startActivity(intent);

启动alertDialog源码:

  1. AlertDialog.Builder builder = new AlertDialog.Builder(this);
  2. builder.setMessage("是否接受文件?")
  3. .setPositiveButton("是", new DialogInterface.OnClickListener() {
  4. @Override
  5. publicvoid onClick(DialogInterface dialog, int which) {
  6. }
  7. }).setNegativeButton("否", new OnClickListener() {
  8. @Override
  9. publicvoid onClick(DialogInterface dialog, int which) {
  10. }
  11. });
  12. AlertDialog ad = builder.create();
  13. // ad.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_DIALOG); //系统中关机对话框就是这个属性
  14. ad.getWindow().setType(WindowManager.LayoutParams.TYPE_SYSTEM_ALERT);
  15. ad.setCanceledOnTouchOutside(false); //点击外面区域不会让dialog消失
  16. ad.show();
还要加上权限
  1. <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />

转载于:https://www.cnblogs.com/ada-zheng/archive/2013/01/16/2862737.html

你可能感兴趣的文章
java性能调优工具
查看>>
C# 其他的Url 文件的路径转化为二进制流
查看>>
cmake使用
查看>>
ios7上隐藏status bar
查看>>
构造方法和全局变量的关系
查看>>
python3基础05(有关日期的使用1)
查看>>
ArrayList的使用方法
查看>>
面向对象高级
查看>>
Bitwise And Queries
查看>>
打印Ibatis最终的SQL语句
查看>>
HBase之八--(3):Hbase 布隆过滤器BloomFilter介绍
查看>>
oracle连接问题ORA-00604,ORA-12705
查看>>
NOI 2019 退役记
查看>>
java的几个日志框架log4j、logback、common-logging
查看>>
Java从零开始学十三(封装)
查看>>
Python2和Python3中的rang()不同之点
查看>>
MySQL的外键,修改表,基本数据类型,表级别操作,其他(条件,通配符,分页,排序,分组,联合,连表操作)...
查看>>
UVALive 4128 Steam Roller 蒸汽式压路机(最短路,变形) WA中。。。。。
查看>>
记忆--1.致我们不可缺少的记忆
查看>>
lintcode28- Search a 2D Matrix- easy
查看>>