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

实现方式两种:

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

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

 <TextView
                android:autoLink="phone"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"          
                android:text="0731-595262" />
2.在代码里实现
对view添加点击效果:
  num为电话号码,
  "android.intent.action.CALL"为隐式Intent跳转到拨打电话的activity
  Intent intent=new Intent("android.intent.action.CALL",Uri.parse("tel:"+num));
  startActivity(intent);
 
posted @ 2016-10-08 10:57  法捷耶夫  阅读(2537)  评论(0)    收藏  举报