Skip to content Skip to sidebar Skip to footer

Android - Send Sms And Make The Text Not Editable

String number = '0707775544'; Uri uri = Uri.parse(number); Intent smsIntent = new Intent(Intent.ACTION_SENDTO, uri);

Solution 1:

If i got the question right, SmsManager is your solution. This tutorial might also be usefull.


Solution 2:

see this tutorial

http://android10.org/index.php/articlesfullapplications/241-sms-messaging-in-android-send-and-receive

you can customize the layout to disable the part you don't want changed then send the message directly


Post a Comment for "Android - Send Sms And Make The Text Not Editable"