2

如何在设备启动时自动启动我的应用程序服务(可以启用/禁用此功能)?我必须在 AndroidManifest 中包含哪些权限?

谢谢

4

1 回答 1

5

这个权限是使用

 <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

在您的 <application> 元素中(确保为您的 BroadcastReceiver 使用完全限定的 [或相对] 类名):

<receiver android:name="com.example.MyBroadcastReceiver">  
    <intent-filter>  
        <action android:name="android.intent.action.BOOT_COMPLETED" />  
    </intent-filter>  
</receiver>

在 MyBroadcastReceiver.java 中:

package com.example;

public class MyBroadcastreceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context context, Intent intent) {
        Intent startServiceIntent = new Intent(context, MyService.class);
        context.startService(startServiceIntent);
    }
}



如需更多帮助 :: http://www.androidcompetencycenter.com/2009/06/start-service-at-boot/ http://blog.gregfiumara.com/archives/82 http://androidgps.blogspot.com/ 2008/09/starting-android-service-at-boot-time.html

于 2011-09-06T09:50:41.970 回答