gpt4 book ai didi

Android 渐变颜色 - 不正确的结果

转载 作者:搜寻专家 更新时间:2023-11-01 09:08:16 24 4
gpt4 key购买 nike

我想创建一个重复图像的背景,并在其上添加从白色到透明的渐变。因此,它应该在 View 的顶部以全白开始,然后在底部完全透明地结束,在底部可以完全看到背景图像。我的代码:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item>
<bitmap
android:dither="true"
android:src="@drawable/bg"
android:tileMode="repeat" >
</bitmap>
</item>
<item>
<shape>
<gradient
android:angle="90"
android:endColor="#ffffffff"
android:startColor="#00000000" />
</shape>
</item>

问题是我没有得到从白色 (#ffffff) 到透明的渐变,而是从灰色到透明的渐变。使用颜色选择器,我得到了 endColor 的代码,它是 #dfdfdf。

为什么会出错?谢谢!

屏幕截图:enter image description here

规范

我以一种风格使用这个背景:

<resources>
<style name="Theme.NoBackground" parent="android:Theme">
<item name="android:windowBackground">@drawable/background</item>"
</style>
</resources>

最佳答案

你的渐变从透明的黑色到不透明的白色。

你不需要这个吗?

android:endColor="#ffffffff" 
android:startColor="#00ffffff" />

关于Android 渐变颜色 - 不正确的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10271531/

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