使用linkify或autolink后,TextView会突出显示

时间:2010-10-06 19:36:46

标签: android textview linkify

我有一条很长的短信,后跟一个链接,并把它放在TextView中。它就像这样:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content" android:layout_height="wrap_content">
    <LinearLayout android:orientation="vertical"
        android:layout_width="wrap_content" android:layout_height="wrap_content">
        <TextView android:id="@+id/details" android:layout_width="wrap_content"
            android:layout_height="wrap_content" android:padding="10dp"
            android:text="@string/message" android:textSize="16sp" android:autoLink="web"/>
    </LinearLayout>![alt text][1]
</ScrollView>

问题是,当我选择链接时,整个文本会突出显示。如何防止这种情况?

alt text

2 个答案:

答案 0 :(得分:0)

不确定是否仍然需要这样做。这应该可以防止带有链接的textview的奇怪突出显示效果。您也应该能够在XML中设置它们。

textview.setCursorVisible(false);
textview.setFocusableInTouchMode(false);

答案 1 :(得分:0)

没有任何东西,包括android:textColorHighlight,有任何影响,但

textView.setHighlightColor(Color.TRANSPARENT);

为我工作。