我开始请求图像选择:
Intent intent = new Intent();
intent.setType( "image/*" );
intent.setAction( Intent.ACTION_GET_CONTENT );
startActivityForResult( Intent.createChooser( intent, "Choose"), PHOTO_GALLERY );
并将数据取回onActivityResult
:
if( resultCode == Activity.RESULT_OK && requestCode == PHOTO_GALLERY )
{
U.log( data.getData() );
Bitmap bm = ... // built from the getData() Uri
this.postImagePreview.setImageBitmap( bm );
}
当我启动 Intent 时,我会看到一些文件夹,例如sdcard
、Drop Box
、MyCameraApp
等。
如果我从 中选择图片sdcard
,当我加载预览时,它是完全错误的图像。其他文件夹似乎没有给我这个问题。
有谁知道为什么它会让我选择一个图像,然后给我另一个 Uri?
编辑:以下是一些示例记录getData()
:
好的:
content://com.google.android.gallery3d.provider/picasa/item/5668377679792530210
坏的:
content://media/external/images/media/28
编辑:从画廊的 sdcard 文件夹中选择时,我仍然遇到问题。
这是我在 onActivityResult 中所做的更多扩展:
// cursor
Uri selectedImage = data.getData();
String[] filePathColumn = { MediaStore.Images.Media.DATA };
Cursor cursor = mContext.getContentResolver().query( selectedImage, filePathColumn, null, null, null );
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex( filePathColumn[0] );
String filePath = cursor.getString( columnIndex );
cursor.close();
// Cursor: /mnt/sdcard/Pic.jpg : /mnt/sdcard/Pic.jpg
U.log( "Cursor: " + filePath + " : " + Uri.parse( filePath ) );
// "regular"
// Regular: content://media/external/images/media/28 : content://media/external/images/media/28
U.log( "Regular: " + data.getDataString() + " : " + Uri.parse( data.getDataString() ) );
// Regular 2: content://media/external/images/media/28 : content://media/external/images/media/28
U.log( "Regular 2: " + data.getData() + " : " + data.getData() );
mPostImagePreview.setImageBitmap( BitmapFactory.decodeFile( filePath ) );
mPostImagePreview.setVisibility( View.VISIBLE );
他们仍然设置了错误的图像。如果我进入画廊,长按图像,查看我得到的详细信息:
TItle: Pic
Time: May 2, 2012
Width: 720
Height: 1280
Orientation: 0
File size: 757KB
Maker: Abso Camera
Model: Inspire 4G
Path: /mnt/sdcard/Pic.jpg
所以,Gallery 告诉我路径与选择动作相同,Gallery 正在正确渲染它。那么,如果我从 onActivityResult 设置它,为什么它不渲染呢?
此外,这是我现在用来触发 Intent 的代码:
private void selectPhoto()
{
Intent intent = new Intent( Intent.ACTION_GET_CONTENT );
intent.setType( "image/*" );
( ( Activity )mContext ).startActivityForResult( Intent.createChooser( intent, "Select Picture" ), PHOTO_GALLERY );
}