作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经使用 GridView 实现了图片库。网格项目的布局:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants" >
<ImageView
android:id="@+id/media_item"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:contentDescription="@string/thumbnail_for_image"
android:scaleType="centerCrop" />
<View
android:id="@+id/overlay_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?attr/selectableItemBackground" />
</FrameLayout>
我的目标是在触摸网格项时获得这种漂亮的 Material 波纹效果。不幸的是,我无法为我的问题找到纯粹的解决方案。所以我想出了使用 this ,正如作者所说,解决方法 - 在主要 ImageView 之上添加叠加层 View,并将背景设置为
?attr/selectableItemBackground
将它放在 ImageView 的背景或父 FrameLayout 背景上不起作用。
我敢肯定,一定有更好的方法来处理它。
最佳答案
GridView 中的
android:drawSelectorOnTop="true"
成功了
关于Android - 如何对 GridView 项目产生链式 react ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30645521/
我是一名优秀的程序员,十分优秀!