使用 linkify 或 autolink 后 TextView 突出显示

发布于 2024-09-26 17:44:56 字数 825 浏览 4 评论 0原文

我有一条长文本消息,后跟一个链接,并将其放入 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>

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

替代文本

I have a long text message followed by a link and have put this inside a TextView. It's simply like this:

<?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>

The problem is when I select the link the whole text becomes highlighted. How can this be prevented ?

alt text

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

如梦亦如幻 2024-10-03 17:44:56

不确定这是否仍然需要。这应该可以防止带有链接的文本视图出现奇怪的突出显示效果。您也应该能够在 XML 中设置这些。

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

Not sure if this is still needed. This should prevent the wierd highlighting effect for a textview with links. You should be able to set these in XML as well.

textview.setCursorVisible(false);
textview.setFocusableInTouchMode(false);
甜点 2024-10-03 17:44:56

包括 android:textColorHighlight 在内的任何东西都没有任何效果,但

textView.setHighlightColor(Color.TRANSPARENT);

对我有用。

Nothing, including android:textColorHighlight, had any effect but

textView.setHighlightColor(Color.TRANSPARENT);

worked for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文