使用Android的Service实现后台定时检测并重启应用
Posted 特立独行的猫a
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Android的Service实现后台定时检测并重启应用相关的知识,希望对你有一定的参考价值。
android的Service使用一例,后台任务定时检测并定时重启应用。
Service简述:
Service(服务)是一个一种可以在后台执行长时间运行操作而没有用户界面的应用组件。服务可由其他应用组件启动(如Activity),服务一旦被启动将在后台一直运行,即使启动服务的组件(Activity)已销毁也不受影响。 此外,组件可以绑定到服务,以与之进行交互,甚至是执行进程间通信 (IPC)。 例如,服务可以处理网络事务、播放音乐,执行文件 I/O 或与内容提供程序交互,而所有这一切均可在后台进行。
在一些场合下需要实现后台定时任务,检测并重启应用,这用service很合适。
使用方法:
RestartAppService 服务类继承自Service:
/**
* 重启app服务
* @author yangyongzhen
*
*/
public class RestartAppService extends Service {
private static final String TAG = "RestartAppService";
private static final long RESTART_DELAY = 60*60 * 1000; // 多少时间后重启检测(1小时)
private MyBinder mBinder;
// 此对象用于绑定的service与调用者之间的通信
public class MyBinder extends Binder {
/**
* 获取service实例
* @return
*/
public RestartAppService getService() {
return RestartAppService.this;
}
/**
* 启动app重启任务
*/
public void startRestartTask(final Context context) {
Toast.makeText(context, "restart check", Toast.LENGTH_SHORT).show();
Log.e(TAG,"restart app check");
TimerTask task = new TimerTask() {
@Override
public void run() {
//定时时间到,检测是否是晚上12点以后。
String curtime = DateUtils.getDatedf18();
if(DateUtils.isInTime(curtime,"23:59","00:59")){
//处理时段内
Log.e(TAG,curtime);
Log.e(TAG,"in time area 23:59--00:59,begin restart"); // restart
Intent intent = getPackageManager().getLaunchIntentForPackage(
getApplication().getPackageName());
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
System.exit(0);
}
}
};
Timer timer = new Timer();
timer.schedule(task, RESTART_DELAY);
}
}
@Override
public IBinder onBind(Intent intent) {
// Create MyBinder object
Log.e(TAG,"onBind");
if (mBinder == null) {
mBinder = new MyBinder();
}
return mBinder;
}
@Override
public boolean onUnbind(Intent intent) {
Log.e(TAG, "onUnbind");
return super.onUnbind(intent);
}
@Override
public void onDestroy() {
Log.e(TAG,"onDestroy");
super.onDestroy();
}
}
接下来需要在AndroidManifest.xml中声明下。
<service android:name=".service.RestartAppService"
android:enabled="true"
android:exported="true"/>
android:exported 表示是否允许除了当前程序之外的其他程序访问这个服务
android:enabled 表示是否启用这个服务
android:permission 是权限声明
android:process 是否需要在单独的进程中运行,当设置为android:process=”:remote”时,代表Service在单独的进程中运行。
注意:它的意思是指要在当前进程名称前面附加上当前的包名,所以“remote”和”:remote”不是同一个意思,前者的进程名称为:remote,而后者的进程名称为:App-packageName:remote。
android:isolatedProcess 设置 true 意味着,服务会在一个特殊的进程下运行,这个进程与系统其他进程分开且没有自己的权限。与其通信的唯一途径是通过服务的API(bind and start)。
在Application或Activity中完成Service的绑定和启动服务:
......
/**
* ServiceConnection代表与服务的连接,它只有两个方法,
* onServiceConnected和onServiceDisconnected,
* 前者是在操作者在连接一个服务成功时被调用,而后者是在服务崩溃或被杀死导致的连接中断时被调用
*/
private RestartAppService myService;
private ServiceConnection connService = new ServiceConnection() {
/**
* Called when a connection to the Service has been established,
* with the android.os.IBinder of the communication channel to the Service.
*/
/**
* 与服务器端交互的接口方法 绑定服务的时候被回调,在这个方法获取绑定Service传递过来的IBinder对象,
* 通过这个IBinder对象,实现宿主和Service的交互。
*/
@Override
public void onServiceConnected(ComponentName name, IBinder service) {
RestartAppService.MyBinder mBinder = (RestartAppService.MyBinder) service;
myService = mBinder.getService();
mBinder.startRestartTask(App.this);
}
@Override
public void onServiceDisconnected(ComponentName name) {
myService = null;
}
};
@Override
public void onCreate() {
super.onCreate();
sInstance = this;
mContext = getApplicationContext();
Log.i(TAG, "==app onCreate==");
// 记录异常日志
//创建绑定对象并绑定服务,用于定时重启app
Intent intent = new Intent(this, RestartAppService.class);
bindService(intent, connService, Context.BIND_AUTO_CREATE);
}
创建了一个ServiceConnection对象,该代表与服务的连接。
它只有两个方法, onServiceConnected和onServiceDisconnected,其含义如下:
-
onServiceConnected(ComponentName name, IBinder service)
系统会调用该方法以传递服务的 onBind() 方法返回的 IBinder。其中service便是服务端返回的IBinder实现类对象,通过该对象我们便可以调用获取LocalService实例对象,进而调用服务端的公共方法。而ComponentName是一个封装了组件(Activity, Service, BroadcastReceiver, or ContentProvider)信息的类,如包名,组件描述等信息,较少使用该参数。 -
onServiceDisconnected(ComponentName name)
Android 系统会在与服务的连接意外中断时(例如当服务崩溃或被终止时)调用该方法。注意:当客户端取消绑定时,系统不会调用该方法。
Service生命周期分析:
绑定服务bindService时,RestartAppService 服务端的onCreate()、onBind方法会依次被调用。
此时Application的ServiceConnection.onServiceConnected()被调用并返回MyBinder对象。
mBinder.getService方法返回RestartAppService 的实例对象myService,此时客户端便持有了RestartAppService 的实例对象,也就可以任意调用RestartAppService 类中的声明公共方法了。
这里由于只是一个简单的定时检测重启,暂未用到myService。
如果尝试多次调用bindService方法绑定RestartAppService 服务端会怎样呢?
RestartAppService 的onBind方法仅只调用了一次,那就是在第一次调用bindService时才会回调onBind方法。
如果调用unbindService(connService )解除绑定,此时RestartAppService 的onUnBind、onDestroy方法依次被回调,并且多次绑定只需一次解绑即可。
说明绑定状态下的Service生命周期方法的调用依次为onCreate()、onBind、onUnBind、onDestroy。
以上是关于使用Android的Service实现后台定时检测并重启应用的主要内容,如果未能解决你的问题,请参考以下文章