Необычный RecyclerПросмотреть отзыв о товаре - PullRequest
0 голосов
/ 27 ноября 2018

После создания RecyclerView я заметил странное поведение при нажатии на элемент.Эффект ряби показывается, но после этого весь элемент подсвечивается.Кто-нибудь знает, почему элемент RecyclerView ведет себя таким образом и является ли это какой-то ошибкой?

enter image description here

Макет элемента RecyclerView (одна строка)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linearlayout_listitem_singleline"
    android:foreground="?android:attr/selectableItemBackground"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <TextView
        android:id="@+id/listitem_singleline_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:padding="12dp"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textColor="?android:attr/textColorPrimary" />

</LinearLayout>

RecyclerView макет элемента (две строки)

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    android:id="@+id/relativelayout_listitem_dualline"
    android:foreground="?android:attr/selectableItemBackground"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minHeight="?android:attr/listPreferredItemHeight"
    android:gravity="center_vertical"
    android:baselineAligned="false"
    android:padding="12dp"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <TextView android:id="@+id/listitem_dualline_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:ellipsize="marquee"
        android:textColor="?android:attr/textColorPrimary"
        android:fadingEdge="horizontal" />

    <TextView android:id="@+id/listitem_dualline_subtitle"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignStart="@id/listitem_dualline_title"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:ellipsize="marquee"
        android:textColor="?android:attr/textColorSecondary"
        android:layout_below="@id/listitem_dualline_title"
        android:fadingEdge="horizontal" />
</RelativeLayout>
...