TextView支持HTML TAG

在TextView里加上android:autoLink="all",那么正文中若有网址(http://),则可以显示出来。以下是个范例:
<TextView 
    android:id="@+id/myTextVeiw1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:autoLink="all"
    android:text="@string/url"
    android:layout_x="61px"
    android:layout_y="69px"   
    />

<string name="url">http://eynjay.iteye.com</string>

你可能感兴趣的:(html,android)