
- Forum posts: 77
Aug 11, 2016, 1:56:08 PM via Website
Aug 11, 2016 1:56:08 PM via Website
I need to send a message from my app to phone contact.
By using the following code i can pick the phone contact,
but message can't be send.. any threads??
Uri uri = Uri.parse("content://contacts");
Intent it = new Intent(Intent.ACTION_PICK, ContactsContract.CommonDataKinds.Phone.CONTENT_URI);
it.putExtra("sms_body", "The SMS text");
startActivity(it);
???