在 samsung galaxy s4 mini 上打开相机时应用程序 android 崩溃
App android crash when opening camera on samsung galaxy s4 mini
我只是想问你一些我找不到解决办法的问题
我有一个 samsung galaxy s4 mini,我想用相机做点什么,有时它会崩溃,但它没有给我任何错误。
我得到了这个代码:
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 e) {
e.printStackTrace();
}
// Continue only if the File was successfully created
if (photoFile != null) {
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT,
Uri.fromFile(photoFile));
startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
}
}
}
private File createImageFile() throws IOException {
// Create an image file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
String directory = "appname" + File.separator + "images";
String path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES) + File.separator + directory;
File storageDir = new File(path);
storageDir.mkdirs();
File image = File.createTempFile(
imageFileName, /* prefix */
".jpg", /* suffix */
storageDir /* directory */
);
// Save a file: path for use with ACTION_VIEW intents
mCurrentPhotoPath = image.getAbsolutePath();
return image;
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
if (requestCode == REQUEST_TAKE_PHOTO && resultCode == RESULT_OK && mCurrentPhotoPath != null) {
File file = new File(mCurrentPhotoPath);
BitmapFactory.Options btmapOptions = new BitmapFactory.Options();
Bitmap bm = BitmapFactory.decodeFile(file.getAbsolutePath(),
btmapOptions);
Bitmap resizedBitmap = Bitmap.createScaledBitmap(bm,(int)(bm.getWidth()*0.6), (int)(bm.getHeight()*0.6), true);
mUri = Uri.fromFile(file);
sendPhoto(Constants.encodeTobase64(resizedBitmap));
} else {
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(mContext, "Error", Toast.LENGTH_SHORT).show();
}
});
}
}
有时,当应用程序在方法createImageFile() 中时,var mCurrentPhotoPath 总是有值,但当应用程序在方法onActivityResult() 中时,有时此值为NULL,这时失败。该应用程序刚刚关闭,我没有任何类型的错误。这有点奇怪,因为有时它会起作用(我确实喜欢连续 15 次,而 16 次失败了..)。
最奇怪的是,当我在另一个 phone 上尝试这个应用程序时,它工作正常..有什么解决方案吗?
谢谢大家,很抱歉在这件事上太烦人了..
Samsung 和 Lollipop 存在错误。它正在吹走 activity 而不是从相机返回它。
这应该可以解决您的问题:
File file = new File(createImageFile());
还记得在打开相机之前调用 createImageFile(),这样您就有了保存图片的文件路径。
我认为您当前 activity 调用相机意图。由于缺乏资源被androidos杀死。这就是为什么当 return 来自相机应用程序时。您当前的 activity 已重新启动。如果你想检查请登录 oncreate 方法。要解决此问题,您必须将 mCurrentPhotoPath 存储在 onSaveInstanceState 方法中并在 onCreate 方法中检索它以获取更多信息,请参阅 Google devloper site。
我只是想问你一些我找不到解决办法的问题
我有一个 samsung galaxy s4 mini,我想用相机做点什么,有时它会崩溃,但它没有给我任何错误。
我得到了这个代码:
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 e) {
e.printStackTrace();
}
// Continue only if the File was successfully created
if (photoFile != null) {
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT,
Uri.fromFile(photoFile));
startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
}
}
}
private File createImageFile() throws IOException {
// Create an image file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
String directory = "appname" + File.separator + "images";
String path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES) + File.separator + directory;
File storageDir = new File(path);
storageDir.mkdirs();
File image = File.createTempFile(
imageFileName, /* prefix */
".jpg", /* suffix */
storageDir /* directory */
);
// Save a file: path for use with ACTION_VIEW intents
mCurrentPhotoPath = image.getAbsolutePath();
return image;
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
if (requestCode == REQUEST_TAKE_PHOTO && resultCode == RESULT_OK && mCurrentPhotoPath != null) {
File file = new File(mCurrentPhotoPath);
BitmapFactory.Options btmapOptions = new BitmapFactory.Options();
Bitmap bm = BitmapFactory.decodeFile(file.getAbsolutePath(),
btmapOptions);
Bitmap resizedBitmap = Bitmap.createScaledBitmap(bm,(int)(bm.getWidth()*0.6), (int)(bm.getHeight()*0.6), true);
mUri = Uri.fromFile(file);
sendPhoto(Constants.encodeTobase64(resizedBitmap));
} else {
runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(mContext, "Error", Toast.LENGTH_SHORT).show();
}
});
}
}
有时,当应用程序在方法createImageFile() 中时,var mCurrentPhotoPath 总是有值,但当应用程序在方法onActivityResult() 中时,有时此值为NULL,这时失败。该应用程序刚刚关闭,我没有任何类型的错误。这有点奇怪,因为有时它会起作用(我确实喜欢连续 15 次,而 16 次失败了..)。
最奇怪的是,当我在另一个 phone 上尝试这个应用程序时,它工作正常..有什么解决方案吗?
谢谢大家,很抱歉在这件事上太烦人了..
Samsung 和 Lollipop 存在错误。它正在吹走 activity 而不是从相机返回它。
这应该可以解决您的问题:
File file = new File(createImageFile());
还记得在打开相机之前调用 createImageFile(),这样您就有了保存图片的文件路径。
我认为您当前 activity 调用相机意图。由于缺乏资源被androidos杀死。这就是为什么当 return 来自相机应用程序时。您当前的 activity 已重新启动。如果你想检查请登录 oncreate 方法。要解决此问题,您必须将 mCurrentPhotoPath 存储在 onSaveInstanceState 方法中并在 onCreate 方法中检索它以获取更多信息,请参阅 Google devloper site。