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.
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);