Нечетное поведение выбора с Linkify - PullRequest
1 голос
/ 26 мая 2011

У меня есть TextView с некоторым текстом, который имеет URL.Я использовал Linkify, чтобы превратить их в кликабельные URL:

    Linkify.addLinks(bodyTextView, Linkify.WEB_URLS);

Однако, когда я нажимаю на текст, который НЕ является URL, цвет текста меняется.Это также происходит, если для textview установлено значение AutoLink.

Вот мой макет:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
   <RelativeLayout
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:id="@+id/headerLinearLay"
    android:orientation="horizontal" android:padding="4px">
    <ImageView
        android:id="@+id/avatarImageView"
        android:layout_height="48px" android:layout_width="48px"></ImageView>
    <TextView
        android:id="@+id/usernameTextView"
        android:text="TextView"
        android:paddingLeft="4dp"
        android:layout_toRightOf="@id/avatarImageView"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"></TextView>
</RelativeLayout>
    <TextView android:text="TextView" android:layout_height="wrap_content" android:id="@+id/bodyTextView" android:textSize="24sp" android:layout_width="fill_parent" android:autoLink="web"></TextView>
    <TextView android:text="TextView" android:layout_height="wrap_content" android:id="@+id/dateTextView" android:layout_width="fill_parent" android:layout_weight="1"></TextView>
    <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/toolbarLinearLayout" android:background="@color/solid_yellow" android:padding="5dip">
    <Button android:layout_width="fill_parent" android:layout_weight="1" android:layout_height="wrap_content" android:id="@+id/replyButton" android:text="Reply"></Button>
    <Button android:layout_width="fill_parent" android:layout_weight="1" android:layout_height="wrap_content" android:text="RT" android:id="@+id/rtButton"></Button>
    <Button android:id="@+id/dmButton" android:layout_width="fill_parent" android:layout_weight="1" android:layout_height="wrap_content" android:text="DM"></Button>
</LinearLayout>




</LinearLayout>

Ответы [ 2 ]

1 голос
/ 27 мая 2011

Добавление:

android:textColor="#ffffff"

к элементу TextView в xml решает проблему ... кажется, что переопределение textcolor переопределяет другие стили цвета, связанные с элементом ... см. Этот вопрос: Цвет представления текста Android не изменяется при отключении

0 голосов
/ 27 мая 2011

Это поведение по умолчанию.Вы можете установить цвет текста в явном виде, используя атрибут android: textColor, но тогда вы не увидите визуального изменения ссылки при ее нажатии.Одним из решений является установка android: textHighlightColor в соответствии с нормальным цветом текста.Текст, не содержащий ссылки, остается прежним, и при щелчке по ссылке вы видите визуальный сигнал (фон ссылки меняет цвет остальной части текста).

...