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); smsIntent.putExtra("sms_body", "Hello world!"); startActivity(smsIntent); When I run this code, Android's default SMS opens up and I can of course send this. My question is: is there anyway I can make the the text "Hello world!" NOT editable, and if you want to write a personal message, it gets below this "Hello world!". Thanks in advance! 回答1: If i got the question right,