Android textview autolink web 隱藏鏈接問題

一、 不隱藏

  <TextView

                android:id="@+id/tv_offlinebbs"

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:autoLink="web"

                android:text="Google Address http://www.google.com" />

二、隱藏連接

1.在String.xml 中添加

  <string name="link"><a href="http://www.google.com" >Google Address</a></string>

2.TextView中要將autoLink去掉,將android:text引用String.xml中的 link

<TextView

                android:id="@+id/tv_offlinebbs"

                android:layout_width="wrap_content"

                android:layout_height="wrap_content"

                android:text="@string/link" />

3.在 Activity 中添加

TextView t2 = (TextView) findViewById(R.id.link);

t2.setMovementMethod(LinkMovementMethod.getInstance());

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章