Created
May 29, 2015 09:59
-
-
Save Den-Rimus/14085350336401d86ac3 to your computer and use it in GitHub Desktop.
resolve to a path
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Cursor cursor = null; | |
String path = 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(); | |
path = cursor.getString(column_index); | |
} finally { | |
if (cursor != null) { | |
cursor.close(); | |
} | |
} | |
return path; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment