您的位置:首页 > 移动开发 > Android开发

Android 中textView 直接点击跳转web、phone、email之类的

2016-04-05 14:21 423 查看
<TextView
android:layout_marginTop="10dp"
android:autoLink="phone"  //跳转电话
android:textSize="@dimen/sn_16sp"
android:text="132131216"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_marginTop="10dp"
android:autoLink="web"  //跳转web
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/author" />

<TextView
android:layout_marginTop="10dp"
android:autoLink="email" //跳转邮箱
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/email" />
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: