安装apk、卸载apk 代码
安装 apk:
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Intent i = new Intent(Intent.ACTION_VIEW);? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? String filePath = appInfo.getAbsolutePath();? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? i.setDataAndType(Uri.parse("file://" + filePath),? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? "application/vnd.android.package-archive");? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? startActivity(i);
卸载 apk:
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Uri uri = Uri.fromParts("package",?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? appList.get(pos).getPackageName(),?? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? null);? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Intent intentuninstall = new Intent(Intent.ACTION_DELETE, uri);? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? startActivity(intentuninstall);