某些设备中的相机上传问题[可能重复]

时间:2015-12-17 03:48:19

标签: android android-camera crop android-camera-intent android-crop

我将相机和相册中的图像转换为片段时遇到问题,我的条件是

我在视图分页器中有四个片段,其中一个片段具有配置文件pic更新功能,我没有在父活动的onActivityResult()中获得某些设备的结果,这就是为什么我没有得到结果对于Fragment来说,我使用下面的代码,请告诉我出了什么问题“我在SAMSUNG设备中主要遇到这个问题”,

关于家长活动的活动结果

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if(fragmentProfile!=null)
        fragmentProfile.onActivityResult(requestCode,resultCode,data);
}

用于捕获照片的片段配置文件中的意图

Intent cameraIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, outputFileUri);
startActivityForResult(cameraIntent, REQUEST_CODE_TAKE_PICTURE);

0 个答案:

没有答案