第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用文件提供程序檢索內(nèi)容 URI 失敗

使用文件提供程序檢索內(nèi)容 URI 失敗

神不在的星期二 2022-12-15 16:44:59
我花了幾天時(shí)間閱讀文檔并遵循各種教程,但無(wú)論我做什么,我都會(huì)遇到錯(cuò)誤。我正在嘗試將圖像保存在內(nèi)部存儲(chǔ)中,然后將其轉(zhuǎn)換為內(nèi)容 Uri,以便我可以使用系統(tǒng)裁剪和調(diào)整大小功能。如果有人能發(fā)現(xiàn)我的代碼哪里有問(wèn)題,我將不勝感激:主要活動(dòng):new Thread(() -> {try {    String temp = "temp";    //Convert bitmap to byte array    ByteArrayOutputStream bos = new ByteArrayOutputStream();    bitmap.compress(Bitmap.CompressFormat.JPEG, 100, bos);    byte[] bitmapData = bos.toByteArray();    //Write the bytes in file    FileOutputStream fos = openFileOutput(temp, MODE_PRIVATE);    fos.write(bitmapData);    fos.flush();    fos.close();    //onvert file to contentUri    File file = new File(getFilesDir(), temp);    Intent intent = new Intent();    intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);    intent.setFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);    Uri imageUri = FileProvider.getUriForFile(MainActivity.this, "@string/file_provider_authority", file);    intent.setDataAndType(imageUri, "image/jpg");    intent = WallpaperManager.getInstance(getApplicationContext()).getCropAndSetWallpaperIntent(imageUri);    startActivityForResult(intent, ACTIVITY_CROP);} catch (Exception e) {    e.printStackTrace();}}).start();顯現(xiàn):<provider        android:name="android.support.v4.content.FileProvider"        android:authorities="@string/file_provider_authority"        android:grantUriPermissions="true"        android:exported="false">        <meta-data            android:name="android.support.FILE_PROVIDER_PATHS"            android:resource="@xml/file_provider_paths" />    </provider></application>file_provider_paths.xml:<paths><files-path    path="/" name="temp" />字符串.xml:<resources><string name="file_provider_authority"    translatable="false">com.me.wallpaper_app.provider</string>
查看完整描述

2 回答

?
繁花如伊

TA貢獻(xiàn)2012條經(jīng)驗(yàn) 獲得超12個(gè)贊

"@string/file_provider_authority"不是您在 Java 中引用字符串資源的方式。使用getString(R.string.file_provider_authority)

更新:根據(jù)評(píng)論,第二個(gè)主要問(wèn)題是此內(nèi)容的使用者沒(méi)有使用 的 MIME 類型Intent,而是調(diào)用getType()aContentResolver以從ContentProvider. 在這種情況下,那是您的FileProvider,并且FileProvider只知道如何使用文件擴(kuò)展名并將其轉(zhuǎn)換為 MIME 類型。因此,usingtemp.jpeg提供FileProvider了返回正確 MIME 類型所需的信息。



查看完整回答
反對(duì) 回復(fù) 2022-12-15
?
慕斯王

TA貢獻(xiàn)1864條經(jīng)驗(yàn) 獲得超2個(gè)贊

嘗試這個(gè)


      Uri imageUri = FileProvider.getUriForFile(MainActivity.this, R.string.file_provider_authority, file);

也改變


    <paths>

    <files-path

    path="/" name="temp" />


    <?xml version="1.0" encoding="utf-8"?>

    <paths xmlns:android="http://schemas.android.com/apk/res/android"> 

    <external-path name="external_files" path="."/>

    </paths>


查看完整回答
反對(duì) 回復(fù) 2022-12-15
  • 2 回答
  • 0 關(guān)注
  • 121 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)