启动安装的apk

File apkFile = new File(Environment.getExternalStorageDirectory().getAbsolutePath() + "/packageName.apk"); 
Intent intent = new Intent(Intent.ACTION_VIEW); 
intent
.setDataAndType(Uri.fromFile(apkFile), "application/vnd.android.package-archive"); 
startActivity
(intent); 

你可能感兴趣的:(android)