gpt4 book ai didi

android - 如何让cardview只显示底部阴影

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:44:36 36 4
gpt4 key购买 nike

我使用以下代码:

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

截图是:

enter image description here

如何让底部只显示阴影?

最佳答案

如果你想要线性阴影,试试这个:

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

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com