Gallery has stopped while cropping image in kitkat Nexus7

后端 未结 1 1780
猫巷女王i
猫巷女王i 2020-12-03 13:15

Problem: I am fetching image from gallery and after that cropped that image and its working perfect in all device. But it is giving me error while

相关标签:
1条回答
  • 2020-12-03 13:22

    I have resolved my problem.

    What i have do,

    I have just change this from

     intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
     intent.addCategory(Intent.CATEGORY_OPENABLE);
     intent.setType("*/*");
     startActivityForResult(Intent.createChooser(intent, "Complete action using"), PICK_FROM_FILE);
    

    to

     intent = new Intent(Intent.ACTION_PICK);
     intent.setType("*/*");
     intent.putExtra(android.provider.MediaStore.EXTRA_OUTPUT,
                                mImageCaptureUri);
     startActivityForResult(Intent.createChooser(intent,"Complete action using"), PICK_FROM_FILE);
    

    Working like charm.

    Thanks Everyone.

    0 讨论(0)
提交回复
热议问题