sms - How to show the dialog of all the messaging options in android? -
i trying send text messages selected contacts on phone using smsmanager default sends message using phone gsm message option. requirement show popup user choose messaging options such whatsapp, viber etc shown in image
here code
smsmanager sm = smsmanager.getdefault(); sm.sendtextmessage("9844598445", null, "hello there", null, null); please help
try one
uri uri = uri.parse("smsto:" + smsnumber); intent intent = new intent(intent.action_sendto, uri); intent.putextra("sms_body", smstext); startactivity(intent);
Comments
Post a Comment