Android - 发送短信并使文字无法编辑

时间:2011-10-20 09:52:09

标签: android sms

                String number = "0707775544";
                Uri uri = Uri.parse(number);
                Intent smsIntent = new Intent(Intent.ACTION_SENDTO, uri);
                smsIntent.putExtra("sms_body", "Hello world!");
                startActivity(smsIntent);

当我运行此代码时,Android的默认短信打开,我当然可以发送此代码。我的问题是:无论如何我可以把文字写成“Hello world!”不可编辑,如果你想写一条个人信息,它会低于这个“Hello world!”。

提前致谢!

2 个答案:

答案 0 :(得分:2)

如果我的问题正确,SmsManager就是你的解决方案。 This tutorial也可能有用。

答案 1 :(得分:0)

参见本教程

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

您可以自定义布局以禁用您不想更改的部分,然后直接发送消息