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

android发短信的代码

时间:2014-10-15 09:35:40      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:sms   android   

android发短信的代码

by 伍雪颖

Uri uri = Uri.parse("smsto:10086");
Intent intent = new Intent(Intent.ACTION_SENDTO,uri);
intent.putExtra("sms_body","The SMS text");
startActivity(intent);


android发短信的代码

标签:sms   android   

原文地址:http://blog.csdn.net/rainlesvio/article/details/40105843

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