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


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM