关于android中的API演示远程服务示例

时间:2009-09-22 05:09:25

标签: android

我在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>

1 个答案:

答案 0 :(得分:3)

首先,you do not want to do that

其次,你不能直接这样做。您需要设置BroadcastReceiver以观看BOOT_COMPLETED广播Intent,并让该接收方启动该服务。