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

Android 打电话,发短信,调用系统浏览器

时间:2015-12-25 23:58:10      阅读:388      评论:0      收藏:0      [点我收藏+]

标签:android   浏览器   message   number   null   

打电话:

Intent intent = new Intent(Intent.ACTION_DIAL);

intent.setData(Uri.parse("tel:10086"));

startActivity(intent);

发短信:


 SmsManager smsManager=SmsManager.getDefault();//取得短信管理器

   /**发简单的文本信息

    * destinationAddress: 目标地址,发给谁

    * scAddress: 来源的地址,谁发的

    * text:发的内容

    * sentIntent:发送广播的状态

    * deliveryIntent: 分销广播状态

    */

 smsManager.sendTextMessage(number, null, message, null, null);


调用系统浏览器:

     Intent intent = new Intent();

intent.setAction(Intent.ACTION_VIEW);

//Uri content_url = Uri.parse("http:\\" + urlText);

     Uri content_url = Uri.parse(url);

intent.setData(content_url);

startActivity(intent);


Android 打电话,发短信,调用系统浏览器

标签:android   浏览器   message   number   null   

原文地址:http://session.blog.51cto.com/8308112/1728432

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