gpt4 book ai didi

android - 线性渐变中心X

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

我正在尝试为按钮制作透明渐变背景,如下所示:

(开始颜色不是灰色而是透明的)

Desired gradient

但是我得到这个:(白色部分太窄)

enter image description here

这是我的 gradient.xml:

<!-- Here centerX does not work -->
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<gradient
android:centerX="30%"
android:startColor="@android:color/transparent"
android:endColor="@android:color/white"/>

</shape>

我也试过添加一个centerColor,但是透明区域变成了灰色!

<!-- Here the startColor turns greyish -->
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">

<gradient
android:centerColor="@android:color/white"
android:centerX="30%"
android:endColor="@android:color/white"
android:startColor="@android:color/transparent" />

</shape>

提前致谢!

最佳答案

如果您只需要将渐变移动到可绘制对象的左侧,请尝试这样的操作:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:left="100dp">
<color android:color="@android:color/white"/>
</item>
<item android:width="100dp">
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:centerX="30%"
android:endColor="@android:color/white"
android:startColor="@android:color/transparent"/>
</shape>
</item>
</layer-list>

这一层由两个矩形组成:

  1. 白色矩形向右移动 30dp
  2. 渐变矩形,宽度为30dp

关于android - 线性渐变中心X,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38304750/

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