作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
卡片浏览 Lollipop 前设备在长按或单击通常会在具有 Lollipop 或更高版本的设备中显示波纹的位置时显示难看的黑色渐变。
这是我的 CardView XML
<android.support.v7.widget.CardView
android:id="@+id/cardview1"
android:layout_width="match_parent"
android:layout_height="match_parent"
style="@style/swipe_section_padding"
android:foreground="?android:attr/selectableItemBackground"
android:clickable="true"
card_view:cardCornerRadius="3dp"
card_view:cardElevation="0dp"
card_view:contentPadding="0dp">
<RelativeLayout ...
</android.support.v7.widget.CardView>
最佳答案
尝试添加 card_view:cardUseCompatPadding="false"属性,
useCompatPadding boolean: true> if CardView should add padding for the shadows on platforms Lollipop and above.
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dip" >
<android.support.v7.widget.CardView
android:id="@+id/cardview1"
android:layout_width="match_parent"
android:layout_height="100dp"
android:clickable="true"
android:foreground="?android:attr/selectableItemBackground"
card_view:cardCornerRadius="3dp"
card_view:cardElevation="2dp"
card_view:cardUseCompatPadding="false"
card_view:contentPadding="0dp" >
</android.support.v7.widget.CardView >
</LinearLayout >
关于android - CardView 在前 Lollipop 设备中显示黑色(不太好看)阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37387830/
我有一个带有 5 个内部字符串变量的对象,但其中 3 个是可选的。我可以为每个可能的组合创建一个构造函数,或者我可以调用通用构造函数并向其传递一些空字符串。后一种情况对我来说很有趣,如果我在调用构造函
我是一名优秀的程序员,十分优秀!