我的活动中有以下按钮,用于打开图库以选择单个或多个图像,在此下方,OnActivityResult
功能,即为多个图像返回结果RESULT_CANCELLED
,以及RESULT_OK
表示单张图片。不知道为什么会发生这种情况。有人可以帮忙。
buttonGallery.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
intent.setType("image/*");
startActivityForResult(Intent.createChooser(intent,"Select Picture"), choose_picture);
//startActivity(intent);
}
});
//OnActivityResult for the above
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if(requestCode == choose_picture) {
Uri imageUri = (Uri)data.getParcelableExtra(Intent.EXTRA_STREAM);
//Do something
}
我data.getData()
为null
,data.getExtras()
为null
。
有人可以指导我如何从上面的代码中获取所需的结果。我想要用户从图库中选择的所有图像的URIs
。
PS:单个图像工作正常,不确定原因。
答案 0 :(得分:19)
最后我得到了解决方案。使用EXTRA_ALLOW_MULTIPLE
时,如果用户选择的内容不止一个,而不是在intent.getExtra()
中返回,则会在ClipData
中返回意图中的数据,这仅支持适用于SDK版本18及更高版本。从那里,可以使用以下代码检索数据 - >
if ((Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR2)
&& (null == data.getData()))
{
ClipData clipdata = data.getClipData();
for (int i=0; i<clipdata.getItemCount();i++)
{
try {
Bitmap bitmap = MediaStore.Images.Media.getBitmap(this.getContentResolver(), clipdata.getItemAt(i).getUri());
//DO something
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
我对intent.getData()
进行了空检查,因为在单个图片的情况下,数据会在intent.getData()
中收到,而在多个选择的情况下,会收到null
}。
因此,对于低于18的sdk版本和单选(不考虑sdk版本),可以通过以下方式简单地检索数据:
InputStream ist = this.getContentResolver()
.openInputStream(data.getData());
Bitmap bitmap = BitmapFactory.decodeStream(ist);