我使用以下代码:
<android.support.v7.widget.CardView
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardUseCompatPadding="true"
app:cardElevation="4dp">
<TextView android:text="in card view" android:layout_width="match_parent" android:layout_height="wrap_content"/>
</android.support.v7.widget.CardView>
截图是:
如何只制作底部阴影?
答案 0 :(得分:0)
如果您想要线性阴影,请尝试以下操作:
<View
android:id="@+id/shadow"
android:layout_width="match_parent"
android:layout_height="3dp"
android:background="@drawable/down_shadow"
/>
down_shadows.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle"
>
<gradient
android:angle="-90"
android:endColor="#EEEEEE"
android:startColor="#FFFFFF"
/>
</shape>
另请参见其他文章,以手动设置阴影,例如:https://medium.com/@ArmanSo/take-control-of-views-shadow-android-c6b35ba573e9。