我使用AppCompat v23库将应用程序从Holo主题转换为AppCompat Material Design。我有一个带有android:autoLink="phone"
的TextView,因此用户可以点击TextView来启动对TextView中显示的电话号码的呼叫。AppCompat主题不适用于TextView android:autoLink =“phone”
当我参加棒棒堂手机上的活动时,我注意到超链接使用的是默认材质等级的颜色,而不是使用我主题中的颜色。是否可以使用android:autoLink="phone"
来应用TextView的主题颜色?
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:autoLink="phone"
tools:text="(904) 867-5309" />
这似乎并没有改变任何东西。 –