我在Android的APISample中学习RemoteService示例。在里面 清单文件,它声明这样的服务: 我的问题是如何将服务指定为“自动启动”,即 它会在手机启动时启动吗?
<service android:name=".app.RemoteService" android:process=":remote" >
<intent-filter>
<!-- These are the interfaces supported by the service, which
you can bind to. -->
<action
android:name="com.example.android.apis.app.IRemoteService" />
<action
android:name="com.example.android.apis.app.ISecondary" />
<!-- This is an action code you can use to select the service
without explicitly supplying the implementation class. -->
<action android:name="com.example.android.apis.app.REMOTE_SERVICE" />
</intent-filter>
</service>
答案 0 :(得分:3)
首先,you do not want to do that。
其次,你不能直接这样做。您需要设置BroadcastReceiver
以观看BOOT_COMPLETED
广播Intent
,并让该接收方启动该服务。