0

我在 ApplicationBroadcastService.class 文件中的代码是:

public class ApplicationBroadcastService extends BroadcastReceiver{
@Override   
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
Activity a=new Activity();
Toast.makeText(context, " Uninstall  ", Toast.LENGTH_LONG).show();
ContentValues values = new ContentValues();         
values.put(ContactsContract.Groups._ID, 4444);
a.getContentResolver().delete(ContactsContract.Groups.CONTENT_URI,
values.toString(),null)
}
}

在menifest.xml 代码是:

<receiver android:name=".ApplicationBroadcastService">
    <intent-filter>
            <category android:name="android.intent.category.DEFAULT" />
            <action android:name="android.intent.action.PACKAGE_ADDED"  />
            <action android:name="android.intent.action.PACKAGE_CHANGED" />
            <action android:name="android.intent.action.PACKAGE_INSTALL" />
            <action android:name="android.intent.action.PACKAGE_REMOVED" />
            <action android:name="android.intent.action.PACKAGE_REPLACED" />
            <data android:scheme="package" />
    </intent-filter>
</receiver>

但是当我卸载应用程序时,我没有收到任何通知。实际上我想在接收通知中删除在安装时创建的联系人组。有什么建议吗?

4

1 回答 1

1

我也对这件事进行了研究,最后得出结论,没有办法在应用程序中获取特定应用程序的卸载事件。这是android不提供的安全原因。但是您可以在其他未安装的应用程序中获取一些事件。

于 2011-12-02T11:30:24.917 回答