在Android 4.4 (KitKat)的新图库访问之前,我用这个方法在SD卡上获得了我的真实路径:
public String getPath(Uri uri) {
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(uri, projection, null, null, null);
startManagingCursor(cursor);
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
现在来看意图。ACTION_GET_CONTENT返回不同的数据:
之前:
content://media/external/images/media/62
Now:
content://com.android.providers.media.documents/document/image:62
我怎样才能获得SD卡上的真实路径?
试试这个:
//KITKAT
i = new Intent(Intent.ACTION_PICK,android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i, CHOOSE_IMAGE_REQUEST);
在onActivityResult中使用以下命令:
Uri selectedImageURI = data.getData();
input = c.getContentResolver().openInputStream(selectedImageURI);
BitmapFactory.decodeStream(input , null, opts);
这个答案是基于你有些模糊的描述。我假设你用行动触发了一个意图:意图。ACTION_GET_CONTENT
现在你得到内容://com.android。providers。media。documents/document/image:62返回,而不是之前的媒体提供者URI,对吗?
在Android 4.4 (KitKat)上,当一个Intent被打开时,新的DocumentsActivity被打开。ACTION_GET_CONTENT被触发,从而导致网格视图(或列表视图),在那里你可以选择一个图像,这将返回以下uri调用context(示例):documents/document/image:62(这些是新文档提供程序的uri,它通过向客户端提供通用文档提供程序uri来抽象底层数据)。
然而,您可以访问gallery和其他响应Intent的活动。通过使用DocumentsActivity中的抽屉来ACTION_GET_CONTENT(从左到右拖动,您将看到一个有Gallery可供选择的抽屉UI)。就像奇巧之前一样。
If you still which to pick in DocumentsActivity class and need the file URI, you should be able to do the following (warning this is hacky!) query (with contentresolver):content://com.android.providers.media.documents/document/image:62 URI and read the _display_name value from the cursor. This is somewhat unique name (just the filename on local files) and use that in a selection (when querying) to mediaprovider to get the correct row corresponding to this selection from here you can fetch the file URI as well.
访问文档提供程序的推荐方法可以在这里找到(获取一个输入流或文件描述符来读取文件/位图):
使用documentprovider的例子
试试这个:
//KITKAT
i = new Intent(Intent.ACTION_PICK,android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i, CHOOSE_IMAGE_REQUEST);
在onActivityResult中使用以下命令:
Uri selectedImageURI = data.getData();
input = c.getContentResolver().openInputStream(selectedImageURI);
BitmapFactory.decodeStream(input , null, opts);
下面的答案是https://stackoverflow.com/users/3082682/cvizv在一个已经不存在的页面上写的,因为他没有足够的代表来回答一个问题,我把它贴出来。没有我的功劳。
public String getImagePath(Uri uri){
Cursor cursor = getContentResolver().query(uri, null, null, null, null);
cursor.moveToFirst();
String document_id = cursor.getString(0);
document_id = document_id.substring(document_id.lastIndexOf(":")+1);
cursor.close();
cursor = getContentResolver().query(
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
null, MediaStore.Images.Media._ID + " = ? ", new String[]{document_id}, null);
cursor.moveToFirst();
String path = cursor.getString(cursor.getColumnIndex(MediaStore.Images.Media.DATA));
cursor.close();
return path;
}
编辑:代码上有一个流程;如果设备有多个外部存储(外部sd卡,外部usb等),以上代码将不能工作在非主存储。