select multiple images in Android Gallery
问题 i m working with one application that have one functionality to select multiple images from android inbuilt Gallery/Camera . Gallery is open successfully using below code. Intent intent = new Intent(); intent.setType("image/*"); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(intent,"Select Picture"), SELECT_PICTURE); but i am able to select only One image from Gallery. so please suggest me how to select multiple images from inbuilt gallery . Thanks in