Anshul
Anshul

Reputation: 9480

How to add auto suggestion to the contact list in Android?

I have been trying to add my own contact list which is coming from server to the auto suggestion search list in new message activity.

Upvotes: 1

Views: 185

Answers (1)

Devashish Mamgain
Devashish Mamgain

Reputation: 2097

First create a contact and then add it to the Applozic Contact Service.

Contact contact = new Contact();
contact.setUserId("adarshk");
contact.setFullName("Adarsh");
contact.setImageURL("R.drawable.applozic_ic_contact_picture_holo_light");
contact.setEmailId("[email protected]");

AppContactService appContactService = new AppContactService(context); appContactService.add(contact);

Contact addition documentation

Upvotes: 2

Related Questions