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
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"