在我的应用中即时上传和Google+图片

时间:2012-11-29 11:43:21

标签: android google-plus android-gallery

我目前遇到以下问题: 当我想从图库中检索图像时,我使用以下代码来启动图库的意图。

public void useGallery() {
    this.intentbasedleave=true;
    Intent intent = new Intent(Intent.ACTION_PICK,
            android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
    intent.setType("image/*");
    startActivityForResult(
            Intent.createChooser(intent, getString(R.string.pleaseselect_image)), IMAGE_PICK);
}

当我从图库中获取数据时,我使用此方法:

private void imageFromGallery(int resultCode, Intent data) {
    Uri selectedImage = data.getData();
    String[] filePathColumn = { MediaStore.Images.Media.DATA };

    Cursor cursor = getContentResolver().query(selectedImage,
            filePathColumn, null, null, null);
    cursor.moveToFirst();

    int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
    String filePath = cursor.getString(columnIndex);
    cursor.close();

    this.updateImageView(BitmapFactory.decodeFile(filePath));
}

这是有效的,除非所选图像来自Google+或即时上传。然后BitmapFactory.decodeFile(filePath))似乎为空?因为该方法引发了一个nullpointer异常。

因此,我的问题是:如何使用Google+中的图片以及图库中的即时上传文件?

1 个答案:

答案 0 :(得分:1)

使用BitmapFactory.decodeUri代替BitmapFactory.decodeFile

您可以将方法imageFromGallery简化为

private void imageFromGallery(int resultCode, Intent data) {
  Uri selectedImage = data.getData();
  updateImageView(BitmapFactory.decodeUri(getContext().getContentResolver(), selectedImage));
}

(假设你可以从某个地方访问上下文)。