定位API 24或更高版本,而不是使用简单的" Uri.fromFile"命令,开发人员需要使用FileProvider(或他们自己的ContentProvider),以便让其他应用程序访问应用程序的文件。
我尝试打开相机应用,让它使用以下代码将文件保存到我应用的私人存储中:
final Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
final File photoFile = FileHelper.generateTempCameraFile(this);
mCameraCachedImageURI = FileProvider.getUriForFile(this, getPackageName()+ ".provider", photoFile);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, mCameraCachedImageURI);
takePictureIntent.setFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
startActivityForResult(takePictureIntent, REQ_CODE_PICK_IMAGE_FROM_CAMERA);
provider_paths.xml
<?xml version="1.0" encoding="utf-8"?>
<paths>
<external-path name="external_files" path="."/>
</paths>
清单文件
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="${applicationId}.provider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/provider_paths"/>
</provider>
这开始很好,因为相机应用程序已启动,但在返回的结果中,我无法使用以前工作正常的代码获取图像文件的方向:
@Override
protected void onActivityResult(final int requestCode, final int resultCode, final Intent data) {
super.onActivityResult(requestCode, resultCode, data);
int orientation = getOrientation(this,mCameraCachedImageURI );
...
public static int getOrientation(final Context context, final Uri photoUri) {
Cursor cursor = null;
try {
cursor = context.getContentResolver().query(photoUri,
new String[]{MediaStore.Images.ImageColumns.ORIENTATION}, null, null, null);
} catch (final Exception ignored) {
}
if (cursor == null) {
// fallback
return getOrientation(photoUri.getPath());
}
int result = 0;
if (cursor.getCount() > 0) {
cursor.moveToFirst();
result = cursor.getInt(0);
}
cursor.close();
return result;
}
public static int getOrientation(final String filePath) {
if (TextUtils.isEmpty(filePath))
return 0;
try {
final ExifInterface exifInterface = new ExifInterface(filePath);
final int orientation = exifInterface.getAttributeInt(ExifInterface.TAG_ORIENTATION,
ExifInterface.ORIENTATION_NORMAL);
int rotate = 0;
switch (orientation) {
case ExifInterface.ORIENTATION_ROTATE_270:
rotate = 270;
break;
case ExifInterface.ORIENTATION_ROTATE_180:
rotate = 180;
break;
case ExifInterface.ORIENTATION_ROTATE_90:
rotate = 90;
break;
}
return rotate;
} catch (final IOException ignored) {
}
return 0;
}
这会崩溃,因为游标在运行此代码时没有任何列。
不仅如此,甚至回退功能(当更改代码以使用它时)都不起作用,因为它为文件的路径添加了一个额外的部分(&#34; external&#34; in这种情况)。
似乎contentResolver在这里使用FileProvider,而不是以前版本的Android上使用的。
事情是,我需要此URI的ContentProvider才能授予相机应用程序访问此文件的权限...
如何使用新的FileProvider Uri使用上面的代码(甚至是更好的代码)获取方向?也许我可以强制ContentResolver使用以前的ContentProvider来获取光标所需的列数据?
我真的必须在这里创建自己的ContentProvider吗?
答案 0 :(得分:0)
Uri
不是文件。您正在getPath()
上调用Uri
,并将其视为文件路径。仅当Uri
中的方案为file
时才有效。在你的情况下,它不是。
您已经有一个File
对象指向该文件。它被称为photoFile
。在活动的某个字段中保留它,并将其保存在已保存的实例状态Bundle
中(因为您的进程可能会在相机应用程序位于前台时终止)。然后,使用photoFile
。不要使用内置ExifInterface
,it has security flaws。
如何使用新的FileProvider Uri使用上面的代码(甚至是更好的代码)获取方向?
你不是。使用photoFile
。
也许我可以强制ContentResolver使用以前的ContentProvider来获取光标所需的列数据?
我不知道为什么你会期望getOrientation()
能够使用Uri
。您正在查询MediaStore
有关不属于Uri
的{{1}}的数据。
我真的必须在这里创建自己的ContentProvider吗?
不,因为MediaStore
不是你的问题。对于您自己的FileProvider
,您会遇到同样有缺陷的getOrientation()
方法。