In my application I am trying to select multiple images from gallery and I want to move to my folder.
I tried with some example coding its not working properly.
I used android code its getting selecting the multiple images but how to get all the images in onActivity result.
I have tried so far
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);
How to select these images in OnActivity Result
Then also I tried with this link But its not showing all the images from gallery and after moving its not updating the gallery