I'm using Intent.EXTRA_ALLOW_MULTIPLE
so that the user can select multiple photos in the gallery at the same time, the problem is that when I get these images in data.getClipData()
of the onActivityResult
method, they do not come in the order that the user selected them (comes in a random order).
Is there any way I can ensure it is sorted by user selection?