Android Image Picker Select multiple images from gallery with a maximum limit of 5 -


i have app user needs able choose multiple pictures send them somewhere. however, can send 5 images @ time. need able limit number of images can pick gallery through image picker.

to put in single sentence: i want limit number of images/photos user can select in default image selector gallery.

here code using image picker:

intent chooseintent = new intent(intent.action_pick, mediastore.images.media.external_content_uri); chooseintent.putextra(intent.extra_allow_multiple, true); startactivityforresult(chooseintent, 2); 

it keeps track of how many images selected @ top default:

is there way set maximum limit? have user able select 5 images.

it keeps track of how many images selected @ top default:

on particular device, perhaps. please understand there thousands of android device models, , manufacturers set own ui replace of stock apps. not assume devices show count in action bar.

is there way set maximum limit? have user able select 5 images.

not via action_pick. action_pick not documented support extra_allow_multiple @ all, , there may devices not allow multiple selection intent. on intent actions extra_allow_multiple part of protocol (e.g., action_get_content), there no extras controlling maximum count.

you welcome create own image-selection ui, based on results of querying mediastore, , establish own limits. there several image picker libraries, , 1 of may offer feature.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -