中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android 7.0中拍照和圖片裁剪適配的問題詳解

發布時間:2020-09-17 18:07:20 來源:腳本之家 閱讀:162 作者:LeBron_Six 欄目:移動開發

前言

Android 7.0系統發布后,拿到能升級的nexus 6P,就開始了7.0的適配。發現在Android 7.0以上,在相機拍照和圖片裁剪上,可能會碰到以下一些錯誤:

Process: com.yuyh.imgsel, PID: 22995

// 錯誤1
android.os.FileUriExposedException: file:///storage/emulated/0/Android/data/com.yuyh.imgsel/cache/1486438962645.jpg exposed beyond app through ClipData.Item.getUri()

// 錯誤2
android.os.FileUriExposedException: file:///storage/emulated/0/DCIM/RxGalleryFinal/IMG_20161018180127.jpg exposed beyond app through Intent.getData()

主要是由于在Android 7.0以后,用了Content Uri 替換了原本的File Uri,故在targetSdkVersion=24的時候,部分 “`Uri.fromFile() “` 方法就不適用了。 **File Uri 與 Content Uri 的區別** - File Uri 對應的是文件本身的存儲路徑 - Content Uri 對應的是文件在Content Provider的路徑 所以在android 7.0 以上,我們就需要將File Uri轉換為 Content Uri。

具體轉換方法如下:

/**
 * 轉換 content:// uri
 * 
 * @param imageFile
 * @return
 */
public Uri getImageContentUri(File imageFile) {
 String filePath = imageFile.getAbsolutePath();
 Cursor cursor = getContentResolver().query(
   MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
   new String[] { MediaStore.Images.Media._ID },
   MediaStore.Images.Media.DATA + "=? ",
   new String[] { filePath }, null);

 if (cursor != null && cursor.moveToFirst()) {
  int id = cursor.getInt(cursor
    .getColumnIndex(MediaStore.MediaColumns._ID));
  Uri baseUri = Uri.parse("content://media/external/images/media");
  return Uri.withAppendedPath(baseUri, "" + id);
 } else {
  if (imageFile.exists()) {
   ContentValues values = new ContentValues();
   values.put(MediaStore.Images.Media.DATA, filePath);
   return getContentResolver().insert(
     MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
  } else {
   return null;
  }
 }
}

那么,我們在裁剪的時候,應該如下調用:

private void crop(String imagePath) {
 File file = new File("xxx.jpg");
 cropImagePath = file.getAbsolutePath();

 Intent intent = new Intent("com.android.camera.action.CROP");
 intent.setDataAndType(getImageContentUri(new File(imagePath)), "image/*");
 intent.putExtra("crop", "true");
 intent.putExtra("aspectX", config.aspectX);
 intent.putExtra("aspectY", config.aspectY);
 intent.putExtra("outputX", config.outputX);
 intent.putExtra("outputY", config.outputY);
 intent.putExtra("scale", true);
 intent.putExtra("return-data", false);
 intent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(file));
 intent.putExtra("outputFormat", Bitmap.CompressFormat.JPEG.toString());
 intent.putExtra("noFaceDetection", true);
 startActivityForResult(intent, IMAGE_CROP_CODE);
}

這樣就解決了裁剪的問題,但是!!拍照的時候就會出現以下錯誤:

Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (cameraIntent.resolveActivity(getActivity().getPackageManager()) != null) {
 tempFile = new File(FileUtils.createRootPath(getActivity()) + "/" + System.currentTimeMillis() + ".jpg");
 LogUtils.e(tempFile.getAbsolutePath());
 FileUtils.createFile(tempFile);
 cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(tempFile));
 startActivityForResult(cameraIntent, REQUEST_CAMERA);
}
android.os.FileUriExposedException: file:///storage/emulated/0/Android/data/com.yuyh.imgsel/cache/1486438962645.jpg exposed beyond app through ClipData.Item.getUri()

這是因為拍照存儲的文件,也需要以Content Uri的形式,故采用以下辦法解決:

Step.1

修改AndroidManifest.xml

<application
 ...>

 <provider
  android:name="android.support.v4.content.FileProvider"
  android:authorities="{替換為你的包名}.provider"
  android:exported="false"
  android:grantUriPermissions="true">
  <meta-data
   android:name="android.support.FILE_PROVIDER_PATHS"
   android:resource="@xml/provider_paths"/>
 </provider>
</application>

Step.2

在res/xml/下新建provider_paths.xml文件

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
 <external-path name="external_files" path="."/>
</paths>

Step.3

修改拍照時的參數

cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, FileProvider.getUriForFile(getActivity(),BuildConfig.APPLICATION_ID + ".provider", tempFile)); //Uri.fromFile(tempFile)

總結

好了,以上就是這篇文章的全部內容了,希望本文的內容對各位Android開發者們能帶來一定的幫助,如果有疑問大家可以留言交流。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

溧水县| 饶阳县| 安化县| 根河市| 漳平市| 永春县| 尼勒克县| 娄底市| 西乌珠穆沁旗| 定兴县| 仙桃市| 玉山县| 新和县| 康保县| 北宁市| 梅州市| 六枝特区| 嘉兴市| 马龙县| 永嘉县| 滁州市| 中方县| 商水县| 当阳市| 弥渡县| 富源县| 平江县| 高安市| 会理县| 绥宁县| 额济纳旗| 松潘县| 衡阳县| 南雄市| 沈阳市| 且末县| 吉木萨尔县| 肃北| 达孜县| 宣汉县| 化德县|