1. 程式人生 > >適配Android N開啟檔案

適配Android N開啟檔案

1.在AndroidManifest.xml新增如下程式碼:

<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="app包名.fileProvider"
android:exported="false"
android:grantUriPermissions="true">
    <meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" 
/> </provider>

注:exported的值必須為false

2.在res目錄下建立xml資料夾,並新建一個file_paths.xml資原始檔

3.在file_paths.xml中新增如下內容:

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path path="Android/data/app包名/" name="files_root" />
    <external-path 
path="." name="external_storage_root" /> </paths>

4.呼叫,判斷是Android7.0以下版本還是以上版本

//android獲取一個用於開啟圖片檔案的intent
public static Intent getImageFileIntent(Context context, String param) {
    Intent intent = new Intent("android.intent.action.VIEW");
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N
) {//判斷是否為Android N版本 intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); Uri contentUri = FileProvider.getUriForFile(context, BuildConfig.APPLICATION_ID + ".fileProvider", new File(param)); intent.setDataAndType(contentUri, "image/*"); } else { Uri uri = Uri.fromFile(new File(param)); intent.setDataAndType(uri, "image/*"); } intent.addCategory("android.intent.category.DEFAULT"); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); return intent; }