在Android库项目中使用自定义操作启动服务

时间:2012-12-21 08:51:44

标签: android android-service android-library

我创建了一个名为MyLibrary的 Android库项目,其中包含以下 AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="test.myservice"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="8" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <service android:name="mytest.myservice.RemoteService" android:exported="true">
            <intent-filter >
                <action android:name="MYSERVICE"/>
            </intent-filter>
        </service>
    </application>

</manifest>

创建库项目后,我将此库项目的引用添加到名为TestMyLibrayApp 的应用程序中。我从我的应用程序开始提供服务,如下所示。

Intent playerservice = new Intent();
playerservice.setAction("MYSERVICE");
getBaseContext().bindService(playerservice,conn , Service.BIND_AUTO_CREATE);

conn 是服务连接对象。 现在问题是Serivce没有开始。任何人都可以建议我哪里错了?

1 个答案:

答案 0 :(得分:1)

您需要将<service>部分添加到TestMyLibraryApp的清单中。不使用图书馆的清单。