我正在尝试将图片从图库加载到我的应用程序文件夹中。我正在使用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);`}