如何获得picasa图片缩略图

时间:2013-05-03 11:57:07

标签: android thumbnails picasa

使用

从图库中获取图像
Intent intentGallery = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(intentGallery, CHOOSE_PICTURE);

Uri targetUri = data.getData();
Log.v(LOG_TAG,"Data achieved from gallery: "+ targetUri);
如果用户选择了Picasa图片,

会产生内容://com.android.sec.gallery3d.provider/picasa/。

This solution对我不好,因为我不想使用互联网。

那么,有一种方法可以从图库中选择本地picasa图像缩略图吗?

0 个答案:

没有答案