我正在尝试一起开放一项活动和一项服务。我使用的是Android Studio 2.3.3。我已经为手机和平板电脑API 14创建了一个空活动。我能够打开弹出活动Hello World的活动。我创建了另一个空活动,它包含一个打印服务。我可以单独打开活动和服务。当我将服务添加到活动时,活动打开但服务没有。以下是活动的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.testactivity">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
以下是该服务的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.android.testprintservice">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<service
android:name="com.example.android.testprintservice.TestPrintService"
android:permission="android.permission.BIND_PRINT_SERVICE">
<intent-filter>
<action android:name="android.printservice.PrintService"/>
</intent-filter>
<meta-data
android:name="android.printservice"
android:resource="@xml/test_printservice">
</meta-data>
</service>
</application>
</manifest>