【发布时间】:2011-08-18 17:19:00
【问题描述】:
我在我的应用程序中使用Linkify,并且访问的链接文本显示为深紫色。我的整体布局背景颜色是深蓝色,因此无法阅读。文本设置为白色,但访问过的链接显示为深紫色。如何覆盖它?
<TextView android:text="Website:"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="14dip"
android:paddingBottom="2dip"
android:background="#ffffff"
android:textColor="#577dbe" />
<TextView android:text="http://www.mysite.com/"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="12dip"
android:paddingBottom="6dip"
android:textColor="#ffffff"
android:id="@+id/contactWeb1" />
【问题讨论】:
标签: android textview overriding linkify textcolor