Android画廊“分享通过”和Intent.EXTRA_STREAM

时间:2011-07-27 23:24:46

标签: android android-intent share android-gallery

我的应用中有一些代码可以很好地打开图库(在我的应用中),选择照片并上传。

我已经公平地尝试整合附加EXTRA_STREAM的意图处理,例如由图库中的“共享”按钮生成的那些。

这适用于我的Droid X,它可以在模拟器上运行。

今天,我收到了用户的错误报告;当我要求它返回EXTRA_STREAM参数中引用的资源时,用于将照片拉出MediaStore的光标返回null。代码已经通过验证Intent附加了EXTRA_STREAM的点,并且用户告诉我他们正在使用库中的“share”选项。

他们的设备是:

操作系统版本:2.3.3(10 / GRI40) 装置:HTC PG86100

是什么给出的?

为什么HTC图库会向我发送一个我无法访问的EXTRA_STREAM的Intent?

是否还有其他原因导致游标返回null?

String[] filePathColumn = {MediaColumns.DATA};

Uri selectedImageUri;

//Selected image returned from another activity
if(fromData){
    selectedImageUri = imageReturnedIntent.getData();
} else {
    //Selected image returned from SEND intent

    // This is the case that I'm having a problem with.
    // fromData is set in the code that calls this; 
    // false if we've been called from an Intent that has an
    // EXTRA_STREAM
    selectedImageUri = (Uri)getIntent().getExtras().get(Intent.EXTRA_STREAM);
}

Cursor cursor = getContentResolver().query(selectedImageUri, filePathColumn, null, null, null);
cursor.moveToFirst();  // <-- NPE on this line

1 个答案:

答案 0 :(得分:3)

事实证明,许多应用会发送带有image / * mime类型的EXTRA_STREAM,但并非所有应用都使用图库的内容提供商。

生成空指针异常的那些(如上所述)是我在给出文件时尝试从内容提供程序读取的情况:// EXTRA_STREAM。

有效的代码如下:

String filePath;
String scheme = selectedImageUri.getScheme(); 

if(scheme.equals("content")){
    Cursor cursor = getContentResolver().query(selectedImageUri, filePathColumn, null, null, null);
    cursor.moveToFirst(); // <--no more NPE

    int columnIndex = cursor.getColumnIndex(filePathColumn[0]);

    filePath = cursor.getString(columnIndex);

    cursor.close();

} else if(scheme.equals("file")){
    filePath = selectedImageUri.getPath();
    Log.d(App.TAG,"Loading file " + filePath);
} else {
    Log.d(App.TAG,"Failed to load URI " + selectedImageUri.toString());
    return false;
}