如何从内置图库中检索picasa照片?

Mic*_*ult 7 android android-intent android-gallery

我想从内置的Android图库中检索调用ACTION_PICKIntent 的照片.我对Picasa的图片有疑问.我已将代码用于此链接,但它不起作用(File对象不存在).请问任何想法.

Jer*_*rds 5

ACTIVITYRESULT_CHOOSEPICTURE是调用startActivity时使用的int(intent,requestCode);

public void onActivityResult(int requestCode, int resultCode, Intent data) {
  if(requestCode == ACTIVITYRESULT_CHOOSEPICTURE) {
    BitmapFactory.Options options = new BitmapFactory.Options();
    final InputStream is = context.getContentResolver().openInputStream(intent.getData());
    final Bitmap bitmap = BitmapFactory.decodeStream(is, null, options);
    is.close();
  }
}
Run Code Online (Sandbox Code Playgroud)


Mic*_*ult 0

如果插入此指令,则代码有效:

 intent.putExtra("crop", "true");
Run Code Online (Sandbox Code Playgroud)