I have already implemented sending message to multiple users. Now here is what i want to do further
- I have button on My main activity on button click Android's Default contact book should open
- When i click on the particular contact from phonebook, then particular phone number from that selected contact should occur in editbox in my main activity.
I have called intent on click event of button like this
addcontact.setOnClickListener(new View.OnClickListener() {
public void onClick(View V) {
Intent ContactPickerIntent = new Intent(Intent.ACTION_PICK,ContactsContract.Contacts.CONTENT_URI);
startActivityForResult(ContactPickerIntent, CONTACT_PICKER_RESULT);
}
});
Now i m stuck in how to retrieve phone number from OnActivity results.