博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
AlarmManager 闪退之后唤醒应用
阅读量:6497 次
发布时间:2019-06-24

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

hot3.png

public class CrashHandler implements UncaughtExceptionHandler {    /**     *  初始化方法     */	public static void init() {		Thread.setDefaultUncaughtExceptionHandler(new CrashHandler());	}	@Override	public void uncaughtException(Thread thread, Throwable ex) {		ex.printStackTrace();		Activity activity = Environment.activity();        //获取activity对象,可以通过基类Activity的静态方法获取		if (activity != null && !(activity instanceof SplashActivity)) {							//闪退打点                // XXX				try {					Thread.sleep(1000);				} catch (InterruptedException e) {					e.printStackTrace();				}			restartApp(activity);		}	}	public static void restartApp(Activity activity) {		if (activity == null) {			return;		}		Intent intent = new Intent(activity.getApplicationContext(), SplashActivity.class);		PendingIntent restartIntent = PendingIntent.getActivity(				activity.getApplicationContext(), 0, intent, Intent.FLAG_ACTIVITY_NEW_TASK);		AlarmManager mgr = (AlarmManager) activity.getSystemService(Context.ALARM_SERVICE);		mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 1000, restartIntent);        //杀死老线程		android.os.Process.killProcess(android.os.Process.myPid());	}}

AlarmManager,顾名思义,就是“提醒”,是中常用的一种系统级别的提示服务,在特定的时刻为我们广播一个指定的Intent。简单的说就是我们设定一个时间,然后在该时间到来时,AlarmManager为我们广播一个我们设定的Intent,通常我们使用 PendingIntent,PendingIntent可以理解为Intent的封装包,简单的说就是在Intent上在加个指定的动作。在使用Intent的时候,我们还需要在执行startActivity、startService或sendBroadcast才能使Intent有用。而PendingIntent的话就是将这个动作包含在内了。

AlarmManager常用于定时闹钟,一下是一个例子

AlarmManager.RTC_WAKEUP休眠时会运行,如果是AlarmManager.RTC,在休眠时不会运行

//创建Intent对象,action为ELITOR_CLOCK,附加信息为字符串“你该打酱油了”  Intent intent = new Intent("ELITOR_CLOCK");  intent.putExtra("msg","你该打酱油了");      //定义一个PendingIntent对象,PendingIntent.getBroadcast包含了sendBroadcast的动作。  //也就是发送了action 为"ELITOR_CLOCK"的intent   PendingIntent pi = PendingIntent.getBroadcast(this,0,intent,0);      //AlarmManager对象,注意这里并不是new一个对象,Alarmmanager为系统级服务  AlarmManager am = (AlarmManager)getSystemService(ALARM_SERVICE);      //设置闹钟从当前时间开始,每隔5s执行一次PendingIntent对象pi,注意第一个参数与第二个参数的关系  // 5秒后通过PendingIntent pi对象发送广播  am.setRepeating(AlarmManager.RTC_WAKEUP,System.currentTimeMillis(),5*1000,pi);

在Manifest.xml中注册广播接收器:

重写onReceive()函数。

public class MyReceiver extends BroadcastReceiver  {        @Override      public void onReceive(Context context, Intent intent)      {          // TODO Auto-generated method stub          Log.d("MyTag", "onclock......................");          String msg = intent.getStringExtra("msg");          Toast.makeText(context,msg,Toast.LENGTH_SHORT).show();      }    }

 

转载于:https://my.oschina.net/carbenson/blog/792823

你可能感兴趣的文章
解决oracle11g安装导致数据库无法自动搜集统计信息-转
查看>>
Unix_Linux系统定时器的应用(案例)
查看>>
[Java基础] Java如何实现条件编译
查看>>
【转】ubuntu 12.04 下 Vim 插件 YouCompleteMe 的安装
查看>>
设置网页标题图标
查看>>
mysql通过查看跟踪日志跟踪执行的sql语句
查看>>
Android_CodeWiki_01
查看>>
Web QQ 协议 登录加密算法 —— VC++实现
查看>>
Nutch 二次开发之parse正文内容
查看>>
代码储存
查看>>
微信公众平台对所有公众号开放自定义菜单
查看>>
Visual C++ 2012/2013的内存溢出检測工具
查看>>
ubuntu操作系统下载
查看>>
更改git bash默认的路径
查看>>
hdu 4452 Running Rabbits 模拟
查看>>
SQL Server 储存过程的output 参数
查看>>
IOS开发中多线程的使用
查看>>
xcode6 dyld_sim is not owned by root
查看>>
Big Event in HDU(杭电1171)(多重背包)和(母函数)两种解法
查看>>
{好文备份}SQL索引一步到位
查看>>