码迷,mamicode.com
首页 > 其他好文 > 详细

短信发送器

时间:2014-12-08 02:02:42      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   color   os   sp   for   on   div   

注意:短信管理器的获取,长短信的拆分

        //点击发送按钮后发送用户输入的内容
        //1、获取用户输入的内容
        EditText et_phone = (EditText) findViewById(R.id.et_phone);
        EditText et_content = (EditText) findViewById(R.id.et_content);
        String phone = et_phone.getText().toString();
        String ms = et_content.getText().toString();
        //拿到发送短信的api
        SmsManager sm = SmsManager.getDefault();
        ArrayList<String> mss = sm.divideMessage(ms);
        for(String msg : mss){
            sm.sendTextMessage(phone, null, msg, null, null);
        }

 

短信发送器

标签:style   blog   ar   color   os   sp   for   on   div   

原文地址:http://www.cnblogs.com/wanghongwei/p/4150235.html

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