android点击一个按钮!安装另外一个app

android点击一个按钮!安装另外一个app
2024年11月28日 08:23
有1个网友回答
网友(1):

首先你要得到另外一个apk的绝对路径
然后用Intent去安装
File filePath = new File("/xxx/xxx/xxx.apk");
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file://" + filePath),"application/vnd.android.package-archive");
startActivity(intent);