美文网首页
发送短信

发送短信

作者: 勤劳的蚂蚁 | 来源:发表于2019-01-16 17:07 被阅读4次

/发送短信/

    /**
     * 调用系统界面,给指定的号码发送短信,并附带短信内容
     *
     * @param context
     * @param number
     * @param body
     */
    public void sendSmsWithBody(Context context, String number, String body) {
        Intent sendIntent = new Intent(Intent.ACTION_SENDTO);
        sendIntent.setData(Uri.parse("smsto:" + number));
        if (!TextUtils.isEmpty(body)) {
            sendIntent.putExtra("sms_body", body);
        }
        context.startActivity(sendIntent);
    }

相关文章

网友评论

      本文标题:发送短信

      本文链接:https://www.haomeiwen.com/subject/zbnmdqtx.html