在我的应用程序中,我没有任何用户界面部分,因此,一旦在设备上安装了Applicaton,就需要启动服务。我看到许多链接,答案是不可能的,但我想肯定有可能。只需看看确实满足我要求的Android Market上的PlanB应用程序即可。以下是我尝试的清单文件,但是根本没有调用服务。因此,请让我知道安装应用程序后启动服务的最佳方法是什么。
更新
我还尝试使用android.intent.action.PACKAGE_ADDED
它可以很好地检测其他应用程序的软件包,但不能检测其本身。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.auto.start"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<application
android:icon="@drawable/ic_launcher" >
<service android:name=".MyService">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</service>
<receiver android:name=".BootUpReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
<category android:name="android.intent.category.DEFAULT"/>
<action android:name="android.intent.action.PACKAGE_INSTALL" />
<action android:name="android.intent.action.PACKAGE_ADDED" />
<data android:scheme="package"/>
</intent-filter>
</receiver>
</application>
</manifest>