您好,登錄后才能下訂單哦!
這篇文章主要介紹“Android FileProvider如何使用”,在日常操作中,相信很多人在Android FileProvider如何使用問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Android FileProvider如何使用”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
Android基礎--FileProvider
Android 7.0之前,文件的Uri以file:///形式
提供給其他app訪問。
Android 7.0之后,為了安全起見,file:///形式
的Uri不能正常訪問,官方提 供了FileProvider,FileProvider生成的Uri會以content://的形式
分享給其他app使用。
那如何使用FileProvider?
在manifest 中聲明provider
<provider android:authorities="${packagename}.provider" android:name="com.flx.cn.fileprovider" android:exported="false" android:grantUriPermissions="true"> <meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/file_provider" /> </provider>
authorities:相當于一個用于認證的暗號,在分享文件生成Uri時,會通過它的值生成對應的Uri。
exported:的值為false,表示該FileProvider只能本應用使用
meta-data:別的配置信息
grantUriPermissions:讓接收端的app臨時有權限進行操作了。
設置共享目錄
<?xml version="1.0" encoding="utf-8"?> <resources> <paths> <!--<root-path/> 代表設備的根目錄new File("/");--> <root-path name = "" path=""/> <!-- Context.getFilesDir() + "/path/" --> <files-path name="my_files" path="test/"/> <!-- Context.getCacheDir() + "/path/" --> <cache-path name="my_cache" path="test/"/> <!-- Context.getExternalFilesDir(null) + "/path/" --> <external-files-path name="external-files-path" path="test/"/> <!-- Context.getExternalCacheDir() + "/path/" --> <external-cache-path name="name" path="test/" /> <!-- Environment.getExternalStorageDirectory() + "/path/" --> <external-path name="my_external_path" path="test/"/> <!-- Environment.getExternalStorageDirectory() + "/path/" --> <external-path name="files_root" path="Android/data/<包名>/"/> <!-- path設置為'.'時代表整個存儲卡 Environment.getExternalStorageDirectory() + "/path/" --> <external-path name="external_storage_root" path="."/> </paths> </resources>
最終生成的代碼效果
以第二個為例:
content://com.flx.cn.fileprovider/my_files/filexxx.jpg
生成Content Uri文件,供其他app使用
File filePath = new File(Context.getFilesDir(), "my_log"); File newFile = new File(filePath, "my_log.log"); // 生成Uri Uri contentUri = FileProvider.getUriForFile(getContext(), "com.flx.cn.fileprovider", newFile);
授權,一般就讀取和寫入2種權限,并分享
// 這里用的是發送文件。 Intent intent = new Intent(Intent.ACTION_SEND); // 設置讀寫權限 intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION); //Uri傳入Intent intent.putExtra(Intent.EXTRA_STREAM, contentUri); startActivity(intent)
到此,關于“Android FileProvider如何使用”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。