0 Replies - 1269 Views - Last Post: 08 June 2012 - 12:43 AM

#1 kalimuthutr  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 3
  • Joined: 08-June 12

How to select multiple file in android

Posted 08 June 2012 - 12:43 AM

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

Is This A Good Question/Topic? 0
  • +

Page 1 of 1