我添加了一個intent過濾器的活動來攔截我的應用程序的卸載,這樣我可以在用戶卸載我的應用程序時添加一些額外的處理/清理。我的活動被稱爲很好,但我似乎無法完成從設備中刪除軟件包。如何使用卸載活動完成我的android應用程序的實際卸載/刪除?
<activity
android:name=".Uninstall"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.DELETE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="package" />
</intent-filter>
</activity>
當我使用包管理器來嘗試完成卸載時,它只是彈出相同的選擇器對話框。
Intent intent = new Intent(Intent.ACTION_DELETE, Uri.fromParts("package", Uninstall.this.getPackageName(), null));
startActivity(intent);
如果我爲我的應用程序提供替代卸載活動,我該如何從設備上完成APK的實際卸載?
謝謝。
應用程序'NQ Mobile Security'在卸載時調用了一個'Activity'看看(http://imgur.com/Fos9N),(http://imgur.com/fizbK)和(http:// imgur.com/cG9Hr)和問題http://stackoverflow.com/questions/10219328/how-to-show-an-activity-before-my-app-is-uninstalled-android –