我创建了一个名为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没有开始。任何人都可以建议我哪里错了?
答案 0 :(得分:1)
您需要将<service>
部分添加到TestMyLibraryApp的清单中。不使用图书馆的清单。