作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我使用以下代码:
<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>
截图是:
如何让底部只显示阴影?
最佳答案
如果你想要线性阴影,试试这个:
<View
android:id="@+id/shadow"
android:layout_width="match_parent"
android:layout_height="3dp"
android:background="@drawable/down_shadow"
/>
down_shadow.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 .
关于android - 如何让cardview只显示底部阴影,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37716611/
我是一名优秀的程序员,十分优秀!