我是android新手。现在我正在以编程方式重新安装该应用程序。但我不知道这个怎么做。我在谷歌搜索。但我没有得到任何东西。请帮忙。我试过这种方式。请帮帮我。
**Deleting:**
Intent intent = new Intent(Intent.ACTION_DELETE);
intent.setData(Uri.parse("package:aa.activities"));
startActivity(intent);
**Installing:**
Intent promptInstall = new Intent(Intent.ACTION_VIEW)
.setDataAndType(Uri.parse("file:///home/agile/Desktop/ed.apk"),
"application/vnd.android.package-archive");
startActivity(promptInstall);