0

我想对画廊拍照。很容易找到很多这样做的例子,但我希望直接在我自己的相册中打开画廊。这是可能的?

4

1 回答 1

0

你可以尝试做这样的事情:

private static final int SELECT_PICTURE = 1;

// ... 

Intent in = new Intent();
in.setType("image/*");
in.setAction(Intent.ACTION_GET_CONTENT);

Intent takePhotoIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);

String pickTitle = "Select or take a new Picture"; // Or get from strings.xml
Intent chooserIntent = Intent.createChooser(in, pickTitle);
chooserIntent.putExtra
(
  Intent.EXTRA_INITIAL_INTENTS, 
  new Intent[] { takePhotoIntent }
);

startActivityForResult(chooserIntent, SELECT_PICTURE);
于 2012-10-17T17:33:57.047 回答