更改卡片视图的高度颜色

huangapple go评论73阅读模式
英文:

Change Card View Elevation Color

问题

如何更改卡片视图的高度颜色?

或者让它变得更柔和。

当我增加app:cardElevation值时,它会变暗。

英文:

How can I change the color of the card view elevation?

Or make it softer

It gets dark when I increase the app:cardElevation value

答案1

得分: 5

将以下这两个属性添加到你的 CardView 中:

android:outlineAmbientShadowColor="@color/yourShadowColor"
android:outlineSpotShadowColor="@color/yourShadowColor"
英文:

Add these 2 properties to your CardView

android:outlineAmbientShadowColor="@color/yourShadowColor"
android:outlineSpotShadowColor="@color/yourShadowColor"

答案2

得分: 1

这里你可以先更改颜色,首先可以创建一个可绘制文件并将此代码粘贴到其中。然后在你的布局中的 CardView 内部,可以分配为背景文件。

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:id="@android:id/background">
        <shape>
            <corners android:bottomLeftRadius="8dp"
                android:topLeftRadius="5dp"
                android:bottomRightRadius="8dp"
                android:topRightRadius="5dp"/>
            <solid android:color="#ddd"/>
        </shape>
    </item>
</layer-list>
英文:

here you can change color first you can make a drawable file and paste this code in it. then in your layout inside cardview, you can assign as background file.

&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;layer-list xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot;&gt;
&lt;item android:id=&quot;@android:id/background&quot;&gt;
    &lt;shape&gt;
        &lt;corners android:bottomLeftRadius=&quot;8dp&quot;
            android:topLeftRadius=&quot;5dp&quot;
            android:bottomRightRadius=&quot;8dp&quot;
            android:topRightRadius=&quot;5dp&quot;/&gt;
        &lt;solid android:color=&quot;#ddd&quot;/&gt;
    &lt;/shape&gt;
&lt;/item&gt;

</layer-list>

huangapple
  • 本文由 发表于 2020年10月5日 19:53:40
  • 转载请务必保留本文链接:https://go.coder-hub.com/64208121.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定