CardView在前棒棒糖设备中显示黑色(不太好看)的阴影

时间:2016-05-23 09:52:04

标签: android xml android-layout android-studio android-cardview

pre-lollipop 设备上的Cardview在长按或点击时会显示一个丑陋的黑色渐变,通常会在Lollipop或更高版本的设备中显示波纹。

cardview ugly pre-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>

1 个答案:

答案 0 :(得分:0)

尝试添加 card_view:cardUseCompatPadding =&#34; false&#34; 属性,

  

useCompatPadding boolean:true&gt;如果CardView应该添加填充   Lollipop及以上平台上的阴影。

检查cardview:cardUseCompatPadding

<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 >