android 安装apk文件

来源:互联网 发布:3dmax软件简介 编辑:程序博客网 时间:2024/05/19 20:47
Intent intent = new Intent(Intent.ACTION_VIEW);intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.setDataAndType(Uri.fromFile(new File(apkPath)),"application/vnd.android.package-archive");context.startActivity(intent);


原创粉丝点击