broakenmedia / MultiContactPicker

Launch a multi-select contact picker activity, useful for importing and inviting contacts to apps.
Apache License 2.0
143 stars 58 forks source link

how to set a limit for selecting contacts from list. #28

Closed adarshvijayanp closed 6 years ago

adarshvijayanp commented 6 years ago

I like to set maximum number of contacts can be selected from the given contact list , example 100. How can i achieve this?

broakenmedia commented 6 years ago

Can you give me a use case for this?

adarshvijayanp commented 6 years ago

There is a certain amount of price money for each contact upload, so i need to prevent user from adding more than certain number of contacts , eg: 100. But there is a select all option most of the user will try to select all contact from their phone book.

broakenmedia commented 6 years ago

I would recommend using the ‘CHOICE_MODE_SINGLE’ then handling the logic for limiting the number of selections in your own app.

adarshvijayanp commented 6 years ago

Ok thanks.