gpt4 book ai didi

android - 在 samsung galaxy s4 mini 上打开相机时应用程序 android 崩溃

转载 作者:搜寻专家 更新时间:2023-11-01 07:54:14 25 4
gpt4 key购买 nike

我只是想问你一些我找不到解决办法的问题。

我有一个 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 次失败了......)。

最奇怪的是,当我在另一部手机上试用这个应用程序时,它工作正常......有什么解决办法吗?

谢谢大家,很抱歉在这件事上太烦人了..

最佳答案

我认为您当前的 Activity 是调用相机 Intent 。由于缺乏资源而被android操作系统杀死。这就是为什么从相机应用程序返回时。您当前的 Activity 重新启动。如果你想检查请登录 oncreate 方法。要解决此问题,您必须将 mCurrentPhotoPath 存储在 onSaveInstanceState 方法中并在 onCreate 方法中检索它以获取更多信息,请参阅 Google devloper site .

关于android - 在 samsung galaxy s4 mini 上打开相机时应用程序 android 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30511809/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com