配置Android FileProvider需要遵循以下步驟:
<manifest ...>
...
<application ...>
...
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="${applicationId}.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
...
</application>
</manifest>
這里,android:authorities
屬性值應(yīng)該是你的應(yīng)用的包名加上.fileprovider
,例如com.example.myapp.fileprovider
。android:exported
屬性設(shè)置為false
,表示這個(gè)provider只能被你的應(yīng)用訪問(wèn)。android:grantUriPermissions="true"
表示允許FileProvider授予其他應(yīng)用對(duì)文件的訪問(wèn)權(quán)限。
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="external_files" path="." />
</paths>
這里,我們定義了一個(gè)名為external_files
的外部路徑,它指向應(yīng)用的根目錄。你可以根據(jù)需要添加更多的路徑。
// 獲取File對(duì)象
File file = new File(getExternalFilesDir(null), "example.txt");
// 創(chuàng)建FileProvider的URI
Uri fileUri = FileProvider.getUriForFile(this, getApplicationContext().getPackageName() + ".fileprovider", file);
// 使用FileProvider的URI打開(kāi)其他應(yīng)用
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(fileUri, "text/plain");
intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(Intent.createChooser(intent, "Open with"));
這里,我們首先獲取一個(gè)File對(duì)象,然后使用FileProvider的getUriForFile()
方法創(chuàng)建一個(gè)URI。注意,我們需要為這個(gè)URI添加FLAG_GRANT_READ_URI_PERMISSION
標(biāo)志,以便其他應(yīng)用可以訪問(wèn)這個(gè)文件。最后,我們使用這個(gè)URI創(chuàng)建一個(gè)Intent并啟動(dòng)其他應(yīng)用。
現(xiàn)在,你已經(jīng)成功配置了Android FileProvider,并可以使用它來(lái)分享文件。