RecyclerView涟漪效果不起作用

时间:2017-10-03 17:59:37

标签: android android-recyclerview android-linearlayout

我正在尝试将Ripple Effect添加到RecyclerView的项目中。我在网上看了一下,但找不到我需要的东西。我已经尝试了android:background属性到RecyclerView本身并将其设置为“?android:selectableItemBackground”,但它没有用。:

适配器模板如下所示

(__name__ == '_main_')

<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/text_container"
android:layout_width="match_parent"
android:layout_height="75dp"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:focusable="true"
android:orientation="vertical"

>
<TextView
    android:id="@+id/u_key"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="20dp"
    android:gravity="left"
    android:maxLines="1"
    android:paddingLeft="@dimen/u_common_text_size"
    android:paddingRight="@dimen/u_common_text_size"
    android:singleLine="true"
    android:text="Item"
    android:textColor="#808080"
    android:textSize="@dimen/u_common_text_size" />

<TextView
    android:id="@+id/u_value"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:drawablePadding="5dip"
    android:gravity="left"
    android:maxLines="1"
    android:paddingLeft="@dimen/u_common_text_size"
    android:paddingRight="@dimen/u_common_text_size"
    android:singleLine="true"
    android:text="Item"
    android:textColor="@android:color/black"
    android:textSize="@dimen/u_common_text_size" />



<View
    android:id="@+id/bottomline"
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:background="#e6e6e6"
    android:visibility="gone" />

2 个答案:

答案 0 :(得分:0)

期待LinearLayout父视图背景,我看到背景属性不正确(你忘记了问号和:attr之间的android)。

android:background="?android:attr/selectableItemBackground"

答案 1 :(得分:0)

如果您使用ConstraintLayout,请尝试

android:clickable="true"
android:focusable="true"
android:foreground="?attr/selectableItemBackground"