是否有任何方式從我的應用程序中卸載應用程序?我嘗試過像下面這樣的應用程序,但應用程序崩潰時出現異常。從我的應用程序中卸載Android應用程序
Uri packageUri = Uri.parse(items.get(
Integer.parseInt(v.getTag().toString())).getPname());
Intent uninstallIntent = new Intent(Intent.ACTION_DELETE, packageUri);
startActivity(uninstallIntent);
logcat的: -
11-01 11:14:35.781: E/AndroidRuntime(3834): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.DELETE dat=com.android.gesture.builder }
在此先感謝
我沒有得到你真正想要什麼?因爲我知道你想用你的應用程序代碼卸載你的應用程序是嗎? –