1寨躁、在AndroidManifest.xml中添加如下代碼
<provider
? ? ? ? ? ? ? ?android:name="android.support.v4.content.FileProvider"
? ? ? ? ? ? ? ?android:authorities="app的包名.fileProvider"
? ? ? ? ? ? ? ?android:grantUriPermissions="true"
? ? ? ? ? ? ? ?android:exported="false">
? ? ? ? ? ? ? <meta-data
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? android:name="android.support.FILE_PROVIDER_PATHS"
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? android:resource="@xml/file_paths"/>
</provider>
注意:
authorities:app的包名.fileProvider
grantUriPermissions:必須是true镐牺,表示授予 URI 臨時(shí)訪問(wèn)權(quán)限
exported:必須是false
resource:中的@xml/file_paths是我們接下來(lái)要添加的文件
2、在res目錄下新建一個(gè)xml文件夾像寒,并且新建一個(gè)file_paths的xml文件(如下圖)
3料扰、打開(kāi)file_paths.xml文件添加如下內(nèi)容
<?xml version="1.0" encoding="utf-8"?>
<paths>
? ? ? ? ? ? ?<external-path path="Android/data/app的包名/" name="files_root"/>
? ? ? ? ? ? ?<external-path path="." name="external_storage_root"/>
</paths>
path:需要臨時(shí)授權(quán)訪問(wèn)的路徑(.代表所有路徑)
name:就是你給這個(gè)訪問(wèn)路徑起個(gè)名字
4、修改代碼適配Android N
Intentintent =newIntent(Intent.ACTION_VIEW);
//判斷是否是AndroidN以及更高的版本
if(Build.VERSION.SDK_INT>= Build.VERSION_CODES.N) {
? ? ? ? ? ? ?Uri contentUri = FileProvider.getUriForFile(context,"com.bjhl.education.fileProvider",file);
? ? ? ? ? ? ?intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
? ? ? ? ? ? ?intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
? ? ? ? ? ? ?intent.setDataAndType(contentUri,"application/vnd.android.package-archive");
}else{
? ? ? ? ? ? ?intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
? ? ? ? ? ? ?intent.setDataAndType(Uri.fromFile(file),"application/vnd.android.package-archive");
}
context.startActivity(intent);
1龟梦、首先我們對(duì)Android N及以上做判斷;
2窃躲、然后添加flags计贰,表明我們要被授予什么樣的臨時(shí)權(quán)限
3、以前我們直接Uri.fromFile(apkFile)構(gòu)建出一個(gè)Uri,現(xiàn)在我們使用FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".fileProvider", apkFile);
4蒂窒、BuildConfig.APPLICATION_ID直接是應(yīng)用的包名