sms - Android: Send Message from activity without "MessageIntent" -
i using code
intent intentsms = new intent( intent.action_view, uri.parse( "sms:" + "" ) ); intentsms.putextra( "sms_body", "test text..." ); startactivity( intentsms );
but open android message activity . dont want .i want send message dirctyly form phone without click on send button
thanks in advance
you welcome send sms messages directly via smsmanager
, if app holds send_sms
permission.
public void sendthemessage(string message, string phonenumber) { smsmanager .getdefault() .sendtextmessage(phonenumber, null, message, null, null); }
Comments
Post a Comment