如何在android中的Recyclerview中加载图库?

时间:2017-03-17 11:38:20

标签: android image gallery

我正在尝试将图片从图库加载到我的应用程序文件夹中。我正在使用Recyclerview 通过使用此Intent,我可以从Gallery中选择多个图像,但不知道如何在我的应用程序文件夹中获取图像。注意我的应用程序中有不同的文件夹。

 private void OpenFromGallery() {

        Intent intent = new Intent();
        intent.setType("image/*");
        intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
        intent.setAction(Intent.ACTION_GET_CONTENT);
        startActivityForResult(Intent.createChooser(intent, "Select Picture"), 1);`}

1 个答案:

答案 0 :(得分:-1)

希望它对你有用 Click here