Hy!
I have a Image Picker and the the problem is that i always get wrong path to the selected picture.
Code:
startActivityForResult(new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI), 1);
....
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == 1) {
if (resultCode == RESULT_OK) {
Uri uri = data.getData();
Log.e("XXX",uri.getPath());
}
Log:
05-26 18:42:24.766: ERROR/XXX(3290): /external/images/media/2
The right link should be /scdard/test.jpg
Please help
Please see the link below:
Image path
Hope it Helps!