标签: android service android-manifest
AndroidManifest.xml
答案 0 :(得分:5)
根本不包含<intent-filter>。然后,您的服务只能由您的应用程序中的组件访问。您可以使用明确的Intent与其进行互动(例如new Intent(this, MyPrivateService.class))。
<intent-filter>
Intent
new Intent(this, MyPrivateService.class)
答案 1 :(得分:2)
正如commonsware所说,这是一个很好的答案。你也可以在清单中这样做:
android:exported="false"