strings.xml文件中的内容:
<resources>
<string name="app_name">My Application</string>
<string name="author">作者:u010746364</string>
<string name="email">邮箱:move_life@163.com</string>
<string name="blog">博客:http://blog.csdn.net/u010746364</string>
</resources>
xml文件的内容:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:autoLink="web"
android:textColorHighlight="@color/white"
android:text="@string/author"
android:textSize="16sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColorHighlight="@color/white"
android:layout_marginTop="10dp"
android:autoLink="email"
android:text="@string/email"
android:textSize="16sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:textColorHighlight="@color/white"
android:autoLink="web"
android:text="@string/blog"
android:textSize="16sp" />
</LinearLayout>
比如这里在邮箱相关的TextView加上android:autoLink="email"属性,网页相关的TextView加上android:autoLink="web"属性。
当点击相关的内容的时候,自动跳转到系统的邮箱发送界面和浏览器界面。当然也可以用其他的方式实现这样子的效果。
还要注意设置这里面的android:textColorHighlight属性,设置之后,点击TextView之后的背景颜色。设置好就可以实现点击之后背景颜色不变化。