himura
himura

Reputation: 1605

Selecting multiple contacts on android

I have seen this code segment for opening a native activity that chooses one contact

Intent contactPickerIntent = new Intent(Intent.ACTION_PICK, Phone.CONTENT_URI);  
startActivityForResult(contactPickerIntent, 1); 

What I'm interrested in is the activity used for messages On android, when you write a message and press "add recipient" u get an activity that chooses multiple contacts.

is there any hope to use that activity in my application?

Upvotes: 0

Views: 2005

Answers (1)

Ankur Kumar
Ankur Kumar

Reputation: 972

The multiple pick activity is not provided by Base Android so all OEMs provide their own implementation of the multiple pick activity, so i don't think you can find a general implementation common to all handsets.

Upvotes: 1

Related Questions