我正在使用Android official guide来使用默认的设备相机应用来拍照并存储在应用专用文件夹中,但是我遇到了一个奇怪的问题。 这是代码:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) {
ImageView imageView = findViewById(R.id.imageView);
if(data==null)
return;
Bundle extras = data.getExtras();
Bitmap imageBitmap = (Bitmap) extras.get("data");
imageView.setImageBitmap(imageBitmap);
//galleryAddPic();
}
}
public void takeAPicture(View view) {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
File photoFile = null;
try {
photoFile = createImageFile();
if (photoFile != null) {
Uri photoURI = FileProvider.getUriForFile(this,
"it.tux.cameracapture.fileprovider",
photoFile);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
startActivityForResult(takePictureIntent, REQUEST_IMAGE_CAPTURE );
}
} catch (Throwable ex) {
Log.e(getClass().getName(), ex.getMessage());
}
}
}
private File createImageFile() throws IOException {
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File tempFile = File.createTempFile(
imageFileName, /* prefix */
".jpg", /* suffix */
storageDir /* directory */
);
mCurrentPhotoPath = tempFile.getAbsolutePath();
return tempFile;
}
takeAPicture
方法被直接称为与onClick
关联的FloatingActionButton
事件处理程序。
这些是相关的AndroidManifest.xml
条目:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="it.tux.cameracapture">
<uses-feature android:name="android.hardware.camera"
android:required="true" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />
<application... >
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="it.tux.cameracapture.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths">
</meta-data>
</provider>
这是file_paths.xml
的内容:
<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="my_images" path="Android/data/it.tux.cameracapture/files/Pictures" />
</paths>
当触发onActivityResult
时:data
是(总是)null
,但只有在我删除此调用(丢失图像存储)数据的情况下调用takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI)
的情况下正确分配给事件处理程序,我可以在应用程序上使用图像,而无需访问存储的文件(即将其添加到Activity
ImageView
)。
我在运行LineageOS 15.1的 Samsung Galaxy S5 ,运行Android 8.0.0的 Samsung Galaxy S8 , Samsung Galaxy Tab S2 上测试了此应用程序Android 7.0。在所有设备上结果相同。
这是正确的行为吗?我想念什么吗?