/**
* 安装应用
*/
private void invokeAPK() {
// File sdcardDir = Environment.getExternalStorageDirectory();
String path = Environment.getExternalStorageDirectory() + "/"
+ PhoneUtil.APKNAME;
File apkfile = new File(path);
if (!apkfile.exists()) {
return;
}
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(path)),
"application/vnd.android.package-archive");
startActivity(intent);
}
apk安装
最新推荐文章于 2024-07-29 10:58:21 发布