gpt4 book ai didi

Android Recycler 查看波纹效果不起作用

转载 作者:行者123 更新时间:2023-11-29 17:10:58 25 4
gpt4 key购买 nike

我使用以下 xml 可绘制对象作为我的 recyclerview 列表项的背景。

touch_selector.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_activated="true"
android:drawable="@color/green_text_500"/>
<!-- Default, "just hangin' out" state. The base state also
implements the ripple effect. -->
<item android:drawable="@drawable/touch_selector_base" />
</selector>

touch_selector_base.xml

<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/light_grey">
<item android:id="@android:id/mask" android:drawable="@color/light_grey" />
<item android:drawable="@color/dark_grey"/>
</ripple>

在列表项中,我在 list_item_quote.xml

中使用了 touch_selector.xml,如下所示
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="86dp"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:clickable="true"
android:focusable="true"
android:background="@drawable/touch_selector"
>
// layout
</LinearLayout>

SIMILARLY 我有另一个可绘制的 xml touch_selector_dark.xmltouch_selector_base_dark.xml

在我的 recycler-view-adapter 中,我根据索引在这两个可绘制对象之间交替。对于偶数索引,我使用较暗的可绘制对象,对于奇数索引,我使用较亮的背景来产生交替效果。但问题是涟漪效应不起作用。

这里是颜色:

light_grey = #5b5b5b

dark_grey = #212121

green_text_500 = #37863a

最佳答案

在你的回收 View 列表布局中使用这一行

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

关于Android Recycler 查看波纹效果不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40588144/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com