我在setMovementMethod(LinkMovementMethod.getInstance())
实例上使用TextView
,但触摸时文字闪烁。这有什么解决方案吗?
答案 0 :(得分:3)
使用@android:color/primary_text_dark_nodisable
或android:color/secondary_text_dark_nodisable
作为文字视图的文字颜色。您可以使用XML格式执行此操作:
<TextView
android:textColor="@android:color/secondary_text_dark_nodisable"
/>
或以编程方式:
textView.setTextColor(activity.getResources().getColor(android.R.color.primary_text_dark_nodisable));