Answers for "open sms app from android application"

0

how to open sms app on android programmatically

Intent intent = new Intent( Intent.ACTION_VIEW);
                intent.setData(Uri.parse("smsto:" + Uri.encode(phoneNumber)));
                intent.putExtra( "sms_body", "" );
                startActivity(intent);
Posted by: Guest on April-26-2021

Code answers related to "open sms app from android application"

Browse Popular Code Answers by Language