为了从图库中挑选图片,我找到了两种解决方案。
方法一。
Intent intent = new Intent(Intent.ACTION_PICK);
intent.setType(android.provider.MediaStore.Images.Media.CONTENT_TYPE);
startActivityForResult(intent, REQUESTCODE_PICK_FROM_ALBUM);
方法2。
Intent intent = new Intent();
intent.setAction(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent, REQUESTCODE_PICK_FROM_ALBUM);
在我的手机(JellyBean。4.1.2)中测试它们,两种方法都给出相同的结果。从 android 的画廊中挑选图像的推荐方法是什么?