【android】:android实现打开网页和拨打电话

来源:互联网 发布:上海开票软件 网络配置 编辑:程序博客网 时间:2024/06/01 07:12

在function里面执行,都是使用的intent,主干代码如下:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse(“http://www.baidu.com“));

打开百度如上
这里写图片描述

给指定号码拨打电话:
Intent intent = new Intent(Intent.ACTION_DIAL);
intent.setData(Uri.parse(“tel:10086”));
把对象改为了DIAL,然后通过Uri.parse拨打了10086
这里写图片描述

以后遇到好玩的,继续跟大家分享

0 0
原创粉丝点击