我目前正在为拉脱维亚旅行者开发电子指南。我有一个可滚动的“textview”,它将显示有关所选对象的信息。所以问题是当我触摸文本并开始滚动时,它看起来不错 ,但是当我触摸它的时间长一点时,它变成黑色,并且在我滚动它三行之后,文本颜色再次变为白色。坏的
所以问题是如何让它在长按上保持白色或者问题可能出在哪里?
我的文本视图代码:
<TextView
android:id="@+id/textView2"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/imageView1"
android:layout_below="@+id/imageView1"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp"
android:maxLines="5"
android:scrollbars = "vertical"
android:background="@drawable/rect"
android:text="Text"
android:textAppearance="?android:attr/textAppearanceMedium" />