当意图服务未启动/运行时,应用程序是否可以绑定到另一个应用程序的intentService?

时间:2014-03-14 02:48:34

标签: android android-intentservice

IntentService也有onBind方法。 BindService调用非正在运行的服务会启动服务,就像它IntentService那样启动服务吗?

1 个答案:

答案 0 :(得分:-1)

需要使用意图过滤器进行服务。

<service
                    android:enabled="true"
                    android:exported="true"
                    android:name="de.vogella.android.ownservice.local.MyService">
        <intent-filter>
            <action android:name="de.vogella.android.ownservice.local.START_SERVICE" />
        </intent-filter>
        </service>

在调用app时,我们只需要添加获取服务的行

Intent intent=new Intent("de.vogella.android.ownservice.local.START_SERVICE");  
                startService(intent);

我希望它对你有用..