私がやりたいことは、カメラの意図を使って写真を撮り、URIを書き留めて(私はFirebase
ストレージ経由で画像をアップロードするためにこれを使用します)、イメージを表示し、次にImageView
にイメージを表示します。これは、私が現時点でこれをやっているところで、AVDとSony Xperia Z2
(Marshmallow 6.0.1
)で動作します。しかし、Samsung Galaxy S4
Lollipop 5.0.1
を実行してテストした場合、私は問題があります。コードは、指定されたファイルパスでイメージを見つけることができません。私はまた、photoURIを使用してImageView
を設定しようとしましたが、カメラインテントを作成するときにエクストラをコメントアウトしてみました。data.getData()
- これらの方法は機能していません。私は、このデバイスからこのイメージを取得する方法が必要です。デバイスの互換性を損なうことなく、理想的にはクラッシュせずに。一部のデバイスでAndroidカメラの問題が発生する
EDIT:カメラの意図を引き継いで、photoFilepath とphotoURIの両方に値があります。私が
onActivityResult
に着くとすぐに、 は両方ともnullを返します。できるだけ早く私はonActivityResult、両方のリターンnullに取得するよう
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
BitmapFactory.Options opt = new BitmapFactory.Options();
opt.inSampleSize = 8;
if (resultCode == RESULT_OK) {
if (requestCode == CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE){
try {
Bitmap bit = BitmapFactory.decodeFile(photoFilepath, opt);
Bitmap rotated = rotateImg(bit, photoFilepath);
userPhoto.setImageBitmap(rotated);
contentsOfImageView = rotated;
} catch (Exception e) {
e.printStackTrace();
Toast.makeText(this, "Error retrieving photo, please try again", Toast.LENGTH_LONG).show();
contentsOfImageView = null;
}
} // else if here for handling getting images from gallery
addBtn.setVisibility(View.INVISIBLE);
clearBtn.setVisibility(View.VISIBLE);
} else { // Result was a failure
//Toast.makeText(this, "Picture wasn't taken!", Toast.LENGTH_SHORT).show();
}
}
private void dispatchTakePictureIntent() {
Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
// Ensure that there's a camera activity to handle the intent
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
// Create the File where the photo should go
File photoFile = null;
try {
photoFile = createImageFile();
} catch (IOException ex) {
// Error occurred while creating the File
Log.d(TAG, ex.toString());
}
// Continue only if the File was successfully created
if (photoFile != null) {
photoURI = FileProvider.getUriForFile(this,
"com.example.intheactualcodethisismypackagename",
photoFile);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
startActivityForResult(takePictureIntent, CAPTURE_IMAGE_ACTIVITY_REQUEST_CODE);
}
}
}
private File createImageFile() throws IOException {
// Create an image file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File image = File.createTempFile(
imageFileName, /* prefix */
".jpg", /* suffix */
storageDir /* directory */
);
// Save a file: path for use with ACTION_VIEW intents
photoFilepath = image.getAbsolutePath();
return image;
}
private Bitmap rotateImg(Bitmap before, String path) {
ExifInterface exif = null;
try {
exif = new ExifInterface(path);
} catch (IOException e) {
e.printStackTrace();
}
int orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_UNDEFINED);
Matrix matrix = new Matrix();
switch (orientation) {
case ExifInterface.ORIENTATION_ROTATE_90:
matrix.setRotate(90);
break;
case ExifInterface.ORIENTATION_ROTATE_180:
matrix.setRotate(180);
break;
case ExifInterface.ORIENTATION_ROTATE_270:
matrix.setRotate(270);
break;
default:
break;
}
return Bitmap.createBitmap(before, 0, 0, before.getWidth(), before.getHeight(), matrix, true);
}