I have the following code to display imagepicker. After the user selects the onActivityResult image, it is called to return data to me for the selected image.
However, in Kindle, I get resultCode 0, and the data is null. Has anyone else noticed this problem before? This problem only occurs when a fire is fired.
startActivityForResult(new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI), SELECT_PICTURE);
source share