我使用“活动”中的内置相机应用程序拍照。问题是,如果方向改变并且我的活动被重画,我将无法处理从相机意图返回的数据,我试图搜索相同的问题,但似乎让我更加困惑。我要购买捆绑软件还是OnConfigurationChanged()我已将android:configChanges =“ orientation”放置在清单文件中的活动标签中,对于此特定活动,它调用了摄影机意图,但问题似乎仍然存在。谁能指导我解决问题。

这是我的代码:

if(i==0){
    Intent cameraIntent = new Intent(android.provider.MediaStore.ACTION_IMAGE_CAPTURE);
    startActivityForResult(cameraIntent, CAMERA_PIC_REQUEST);
}

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    if( requestCode == 1337 && resultCode== Activity.RESULT_OK){
        Bundle extras = data.getExtras();

        if (extras != null){
            BitmapFactory.Options options = new BitmapFactory.Options();
            options.inSampleSize = 1;
            options.inPurgeable = true;
            options.inInputShareable = true;
            thumbnail = (Bitmap) data.getExtras().get("data");
            // imgview.setImageBitmap(thumbnail);
            image(thumbnail);

        }else{
            Toast.makeText(CreateProfile.this, "Picture NOt taken", Toast.LENGTH_LONG).show();
        }
        super.onActivityResult(requestCode, resultCode, data);
    }
}

最佳答案

尝试将此属性添加到activity文件中的Manifest中。

android:configChanges="keyboardHidden|orientation|screenSize"


谢谢。

07-28 12:35