查看与渐变阴影

时间:2018-02-15 23:49:17

标签: android xml android-view shadow

我一直在寻找一种方法来为视图做一个非常简单的CSS盒子阴影,就像灰色背景上的白纸一样,白色视图有渐变阴影。

我已尝试使用该属性:

android:elevation="Xdp"

背景设置,但它不起作用。我已经尝试了很多解决方案,但没有一个能够正常工作。

1 个答案:

答案 0 :(得分:1)

你应该试试Cardview

<android.support.v7.widget.CardView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:foreground="?android:attr/selectableItemBackground"
    app:cardCornerRadius="4dp"
    app:cardElevation="4dp"
    android:translationZ="5dp"
    app:cardBackgroundColor="@color/grey_100">

不要忘记依赖

 compile 'com.android.support:cardview-v7:21.0.+'