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

时间:2022-11-10 12:53:08

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

实现有方式两种:

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