Skip to content

Instantly share code, notes, and snippets.

@parthdesai1208
Created May 16, 2024 16:03
Show Gist options
  • Save parthdesai1208/0e87bae582ee2acfdeac3443573491c4 to your computer and use it in GitHub Desktop.
Save parthdesai1208/0e87bae582ee2acfdeac3443573491c4 to your computer and use it in GitHub Desktop.
Photo Picker
public String getRealPathFromURI(Context context, Uri contentUri) {
Cursor cursor = null;
try {
String[] proj = { MediaStore.Images.Media.DATA };
cursor = context.getContentResolver().query(contentUri, proj, null, null, null);
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
} finally {
if (cursor != null) {
cursor.close();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment