sms - How to show the dialog of all the messaging options in android? -


enter image description herei 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

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -