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.
Post a Comment for "Android - Send Sms And Make The Text Not Editable"