Intent intent = new Intent(Intent.ACTION_VIEW);intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); //android4.0之后,需要添加这行代码intent.setDataAndType(Uri.parse(filePath), "application/vnd.android.package-archive");startActivity(intent);
本文共 226 字,大约阅读时间需要 1 分钟。
Intent intent = new Intent(Intent.ACTION_VIEW);intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); //android4.0之后,需要添加这行代码intent.setDataAndType(Uri.parse(filePath), "application/vnd.android.package-archive");startActivity(intent);
转载地址:http://jltsa.baihongyu.com/