gpt4 book ai didi

android - 如何在 Imageview 上有 selectableItemBackground?

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:16:56 26 4
gpt4 key购买 nike

我有一个 RecyclerView,每个项目都在项目布局上启用了“selectableItemBackground”,以便在触摸时产生链式 react 。问题是,这些项目上有一个 imageView,并且涟漪效应只发生在图像下方。如何让波纹出现在完整的项目布局上(也在 imageView 上),就像触摸 Google Play 商店上的项目时一样?

最佳答案

或者你可以试试这个:-
简单地说,用 CardView

包裹你的 ImageView
<android.support.v7.widget.CardView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/card_view"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="200dp"
android:clickable="true"
android:focusable="true"
app:cardCornerRadius="4dp"
android:foreground="?android:attr/selectableItemBackground">

<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v7.widget.CardView>

关于android - 如何在 Imageview 上有 selectableItemBackground?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34047815/

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