1

我的应用程序允许用户使用相机拍照。

我已经在几种设备(Nexus S、Nexus One、HTC Magic 和 Galaxy S)上对其进行了测试。该应用程序在前 3 部手机上运行良好,但在 Galaxy 上崩溃了。

这是我写的代码 -

Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
ContentValues values = new ContentValues();
values.put(MediaStore.Images.Media.TITLE, "121.jpg");
values.put(MediaStore.Images.Media.DESCRIPTION,"Image capture by camera");


imageUri = getContentResolver().insert(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, imageUri);

startActivityForResult(cameraIntent, 2);  

这是 OnActivityResult 函数 -

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) { 

        if (resultCode == RESULT_OK) {

                else if (requestCode == 2)
                {
                    sun=getRealPathFromURI(imageUri);
                    File f = new File(sun);
                    thePic.setImageBitmap(decodeFile(f));
                    }

        }
}

resultCode 返回为 0(不是 RESULT_OK),然后应用程序崩溃。

谢谢!

4

0 回答 0