K.Muthu
K.Muthu

Reputation: 1252

How to select multiple file in android

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

Upvotes: 5

Views: 2933

Answers (1)

UVM
UVM

Reputation: 9914

You can create a custom gallery of your own.More info can be had from here. Android custom image gallery

Upvotes: 2

Related Questions