How to select multiple file in android
android, android-image, java
Solution
You can create a custom gallery of your own.More info can be had from here. Android custom image gallery
Problem
I use following code to select file but i can select one file only. How can i select more then one file. ``` Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/*"); startActivityForResult(intent, CHOOSE_FILE_RESULT_CODE); ..... public void onActivityResult(int requestCode, int resultCode, Intent data) { // User has picked an image. Uri uri = data.getData(); //File URI.. } ``` thank u