2

我想从图库中获取图像并在某些布局中设置为背景。我做什么:

    Intent intent = new Intent(Intent.ACTION_PICK,android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
    startActivityForResult(intent, Constants.SELECT_IMAGE);

这个意图向我展示了一个画廊,不仅可以选择图片,还可以选择视频。但我只需要设置为背景的图像。请给我正确的样品。

这种方式没有帮助:

Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), PICK_IMAGE);
4

1 回答 1

4

使用,ACTION_GET_CONTENT代替ACTION_PICKMIME 类型image/*

Intent i = new Intent(Intent.ACTION_GET_CONTENT);
i.setType("image/*");
startActivityForResult(i, Constants.SELECT_IMAGE);
于 2013-08-01T12:58:21.400 回答