我需要总是有一个后台服务来同步我的Android应用程序和服务器。我知道如何通过我的应用程序启动它,但是当Android关闭时,后台服务将会死亡。
如何保持后台服务始终运行? (即使设备关闭然后再打开......)
我需要添加Android的后台服务的启动程序。任何提示?
答案 0 :(得分:19)
在设备开启时使用<action android:name="android.intent.action.BOOT_COMPLETED" />
启动服务。
在AndroidManifest.xml
:
<receiver android:name=".BootBroadcastReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
在AndroidManifest.xml
中添加权限:
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED">
</uses-permission>
在代码部分BootBroadcastReceiver
中:
public class BootBroadcastReceiver extends BroadcastReceiver {
static final String ACTION = "android.intent.action.BOOT_COMPLETED";
@Override
public void onReceive(Context context, Intent intent) {
// BOOT_COMPLETED” start Service
if (intent.getAction().equals(ACTION)) {
//Service
Intent serviceIntent = new Intent(context, StartOnBootService.class);
context.startService(serviceIntent);
}
}
}
编辑:如果您正在谈论设备屏幕开启/关闭,则需要注册<action android:name="android.intent.action.USER_PRESENT" />
和<action android:name="android.intent.action.SCREEN_ON" />
以便在用户在线或屏幕开启时启动服务
答案 1 :(得分:3)
(Even when the device turns off and then turns on..
操作系统在完成启动后广播ACTION_BOOT_COMPLETED。您的应用可以通过请求清单中的权限来要求接收此通知:
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED">
</uses-permission>
http://blog.gregfiumara.com/archives/82
http://www.androidcompetencycenter.com/2009/06/start-service-at-boot/