android 点击数字跳转到电话界面

来源:互联网 发布:淘宝女装店铺公告图片 编辑:程序博客网 时间:2024/05/18 00:40

今天需要用到这个功能,获取到一些电话号码,分割,实现点击即可拨打电话的功能

实现有方式两种:

1,在xml文件下很简单的实现

只需要在textview属性中加入android:autoLink="phone"。

  <TextView
                android:autoLink="phone"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"          
                android:text="0221—887899" />
这个实现功能让我意想不到,能识别分割后的每个电话号码,点击都可跳到拨号页面,太方便了。


2.在代码里实现
对view添加点击效果:
  num为电话号码,
  "android.intent.action.CALL"为隐式Intent跳转到拨打电话的activity
  Intent intent=new Intent("android.intent.action.CALL",Uri.parse("tel:"+num));
  startActivity(intent);

0 0
原创粉丝点击