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

时间:2022-11-09 23:58:34

打电话:

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);