码迷,mamicode.com
首页 > 移动开发 > 详细

Android实现短信发送器功能

时间:2016-04-15 01:55:43      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:

1.短信界面
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. android:layout_width="match_parent"
  3. android:layout_height="match_parent"
  4. android:orientation="vertical" >
  5. <EditText
  6. android:layout_width="match_parent"
  7. android:layout_height="wrap_content"
  8. android:layout_marginTop="10dp"
  9. android:hint="请输入手机号"
  10. android:inputType="phone" />
  11. <EditText
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:layout_marginTop="10dp"
  15. android:hint="请输入短信内容"
  16. android:inputType="text"
  17. android:lines="5" />
  18. <Button
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_marginTop="10dp"
  22. android:onClick="sendSms"
  23. android:text="发送" />
  24. </LinearLayout>
2.业务逻辑
  1. public void sendSMS(View v) {
  2. // 1.取出手机号
  3. EditText et_input_num = (EditText) findViewById(R.id.et_input_num);
  4. // trim: 过滤用户输入的空格
  5. String num = et_input_num.getText().toString().trim();
  6. // 2. 取出用户输入的短信内容
  7. EditText et_input_content = (EditText) findViewById(R.id.et_input_content);
  8. String content = et_input_content.getText().toString().trim();
  9. // 3. 校验
  10. Pattern pattern = Pattern.compile("^1[3578]\\d{9}$");
  11. Matcher matcher = pattern.matcher(num);
  12. if (matcher.matches()) {
  13. if (content != null && !content.equals("")) {
  14. // 4. 校验成功,发送短信
  15. SmsManager smsManager = SmsManager.getDefault();
  16. smsManager.sendTextMessage(num, null, content, null, null);
  17. } else {
  18. Toast.makeText(this, "请检查输入的内容", Toast.LENGTH_LONG).show();
  19. }
  20. } else {
  21. Toast.makeText(this, "请检查手机号", Toast.LENGTH_LONG).show();
  22. }
  23. }
最后在在AndroidManifest.xml里面添加
<uses-permission android:name="android.permission.SEND_SMS  "/> 




Android实现短信发送器功能

标签:

原文地址:http://www.cnblogs.com/eryan/p/5393743.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!