作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有一个 RecyclerView,每个项目都在项目布局上启用了“selectableItemBackground”,以便在触摸时产生链式 react 。问题是,这些项目上有一个 imageView,并且涟漪效应只发生在图像下方。如何让波纹出现在完整的项目布局上(也在 imageView 上),就像触摸 Google Play 商店上的项目时一样?
最佳答案
或者你可以试试这个:-
简单地说,用 CardView
<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/
我是一名优秀的程序员,十分优秀!