Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

 2 Answer(s)

  • http://stackoverflow.com/questions/23426113/how-to-select-multiple-images-from-gallery-in-android

    just go through this link...modify the layout and code the way you want to...the first answer with 22 likes help you a lot...

  • There is EXTRA_ALLOW_MULTIPLE option is set on the intent through the Intent.putExtra() method:

    intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
    
     
    In your code write as below:
    Intent intent = new Intent();
    intent.setType("image/*");
    intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(Intent.createChooser(intent,"Select Picture"), RESULT_LOAD_IMAGE1);
    
    
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: