80,490
社区成员
发帖
与我相关
我的任务
分享
// 启动APK安装
Intent intent = new Intent(Intent.ACTION_VIEW);
String strPath = imFile.getAbsolutePath(); //getApplicationContext().getFileStreamPath(strName).getAbsolutePath();
Log.i(TAG, strPath);
intent.setDataAndType(Uri.parse("file://"+ strPath), "application/vnd.android.package-archive");
startActivity(intent);