从Fragment
.
如果我使用文件中的 Uri Uri.fromFile(file)
(
使用File
String
, 的形式'/data/data/com.package.bla/cache/img198346262jpg'
,它不能正常工作(文件在那里,但它是空的,因为相机没有在上面保存任何东西)。
到目前为止我尝试了什么:
- 在创建文件后删除文件,如本例所示。但是,相机退出后该文件不存在。
- 添加了外部存储读取权限,以防万一
所以我不知道为什么图像没有被保存并且已经花费/浪费了大量时间测试和弄清楚它为什么不起作用。
分段:
private void launchCamera() {
Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
File outputDir = getActivity().getCacheDir();
File file = null;
try {
file = File.createTempFile("img", "jpg", outputDir);
} catch (IOException e) {
e.printStackTrace();
}
if (file != null) {
mImageUri = Uri.fromFile(file); //using Uri is not even exiting the camera
//mImageUri = File.toString(); //If I use String instead of an Uri, it works better (ie, can accept camera photo)
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, mImageUri);
startActivityForResult(cameraIntent, RESULT_TAKE_IMAGE);
}
}
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (resultCode == Activity.RESULT_OK) {
Bitmap original = BitmapFactory.decodeFile(mImageUri.toString(), bounds);
}
}
编辑后的代码,mImageUri。如前所述,如果我使用 Uri,我什至无法接受相机应用程序中的照片。使用字符串可以让我接受照片,尽管照片实际上并没有保存(即文件里面有 0 个字节)。
解释:问题与保存到缓存目录有关。也许这是一个错误,我缺少权限,或者相机应用程序无法保存到您的应用程序私有数据目录中。添加权限 FLAG_GRANT_WRITE_URI_PERMISSION 并没有解决它。相关文章:将相机中的图像存储到私有应用程序缓存目录中并在通过意图启动时将相机数据保存到缓存中
从 Android 2.2 开始的更新getExternalCacheDir()
方法可以用来代替getCacheDir()