strings.xml中定義字串
<string name="google"><a href="http://www.google.com">Google</a>
布局中textview定義
<TextView
android:id="@+id/yinhuiyuan"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:autoLink="all"
android:text="@string/google"
android:textColor="#F5F5F5"
android:textSize="18sp" />
以上方式出現了超級鏈接的樣式
當時點擊textview(google) 沒有任何反應
不知是哪裡還有問題
ps:通過定義intent打開url的方式,這個已知道。
找到原因了
需加上
yinhuiyuan.setMovementMethod(LinkMovementMethod.getInstance());
並且去掉
textview布局中的android:autoLink="all"