After clicking on a button i am getting the content from provider
Intent i = new Intent(Intent.ACTION_OPEN_DOCUMENT);
i.addCategory(Intent.CATEGORY_OPENABLE);
i.setType("image/*");
startActivityForResult(i, REQUESTCODE);
now i want to allow user for multiple selection is it possible.?
Don't know if you solved your problem, but here's how I implemented a multiple selection with the Storage Access Framework
In the Activity Result method, you just need to iterate the ClipData in the Intent parameter
To select multiple files in the Storage Access Framework Activity UI, just hold press any item and the multi selection will activate.