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

android发短信,打电话

时间:2017-12-04 13:19:18      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:uri   view   putextra   ...   default   系统   set   put   ext   

//1.进入系统短信列表界面

Intent intent = newIntent(Intent.ACTION_MAIN);

intent.addCategory(Intent.CATEGORY_DEFAULT);

intent.setType("vnd.android-dir/mms-sms");

startActivity(intent);


//2》进入短信发送界面

Intent intent = new Intent(Intent.ACTION_VIEW);


intent.putExtra("address", "186...");


intent.putExtra("sms_body", "短信内容");


intent.setType("vnd.android-dir/mms-sms");


startActivity(intent);

 

 

打电话:

 Intent intent = new Intent(Intent.ACTION_CALL,Uri.parse("tel:"+number));    
startActivity(intent);

 

android发短信,打电话

标签:uri   view   putextra   ...   default   系统   set   put   ext   

原文地址:http://www.cnblogs.com/hualuoshuijia/p/7976146.html

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