如何在TextView中显示网站的链接,而不是纯文本。
很简单,只需做如下设置
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoLink="all"
android:text="http://www.abc.com"
/>
如何在TextView中显示网站的链接,而不是纯文本。
很简单,只需做如下设置
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:autoLink="all"
android:text="http://www.abc.com"
/>