概述
2019独角兽企业重金招聘Python工程师标准>>>
Android实现App自动重启
使用PendingIntent和AlarmManager
Intent restartIntent = new Intent(MainActivity.this, MainActivity.class);
int pendingId = 1;
PendingIntent pendingIntent = PendingIntent.getActivity(MainActivity.this, pendingId, restartIntent, PendingIntent.FLAG_CANCEL_CURRENT);
AlarmManager mgr = (AlarmManager)getSystemService(Context.ALARM_SERVICE);
mgr.set(AlarmManager.RTC, System.currentTimeMillis() + 2000, pendingIntent);
finish();
转载于:https://my.oschina.net/skyhacker2/blog/377140
最后
以上就是能干苗条为你收集整理的Android实现App自动重启Android实现App自动重启的全部内容,希望文章能够帮你解决Android实现App自动重启Android实现App自动重启所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复