Nullpointerexcepiton on cursor while selecting photo from gallery on dialog fragment
问题 I'm trying to select photo from gallery through DialogFragment . But I'm getting nullpointerexception while initializing cursor . Any ideas why getting this error? Below is my code : if (resultCode == Activity.RESULT_OK) { Uri selectedImage = imageReturnedIntent.getData(); String[] filePathColumn = {MediaStore.Images.Media.DATA}; // Nullpointerexcepiton on this line Cursor cursor = getActivity().getContentResolver().query(selectedImage, filePathColumn, null, null, null); cursor.moveToFirst();