ChatGPT解决这个技术问题 Extra ChatGPT

如何在android中制作渐变背景

我想创建渐变背景,渐变位于上半部分,下半部分为纯色,如下图所示:

https://i.stack.imgur.com/Woq2z.jpg

我不能,因为 centerColor 展开以覆盖底部和顶部。

https://i.stack.imgur.com/bbo6D.jpg

如何制作像第一张图片一样的背景?如何制作不散开的小centerColor

这是上面背景按钮的 XML 中的代码。

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
    <gradient 
        android:startColor="#6586F0"
        android:centerColor="#D6D6D6"
        android:endColor="#4B6CD6"
        android:angle="90"/>
    <corners 
        android:radius="0dp"/>


</shape>
谢谢我已经解决了。但如果你回答更多,我会很自豪。 stackoverflow.com/questions/6652547/…
试试这个webgradients.com
这里有一些出色的例子 -->blog.jakelee.co.uk/…

S
Suragch

视觉示例有助于解决此类问题。

样板

为了创建渐变,您在 res/drawable 中创建一个 xml 文件。我打电话给我的 my_gradient_drawable.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:type="linear"
        android:angle="0"
        android:startColor="#f6ee19"
        android:endColor="#115ede" />
</shape>

您将其设置为某个视图的背景。例如:

<View
    android:layout_width="200dp"
    android:layout_height="100dp"
    android:background="@drawable/my_gradient_drawable"/>

类型="线性"

linear 类型设置 angle。它必须是 45 度的倍数。

<gradient
    android:type="linear"
    android:angle="0"
    android:startColor="#f6ee19"
    android:endColor="#115ede" />

https://i.stack.imgur.com/zv2Ap.png

类型="径向"

radial 类型设置 gradientRadius。使用 %p 表示它是父级最小维度的百分比。

<gradient
    android:type="radial"
    android:gradientRadius="10%p"
    android:startColor="#f6ee19"
    android:endColor="#115ede" />

https://i.stack.imgur.com/xjWvp.png

类型=“扫”

我不知道为什么有人会使用扫描,但为了完整起见,我将其包括在内。我不知道如何改变角度,所以我只包括一张图片。

<gradient
    android:type="sweep"
    android:startColor="#f6ee19"
    android:endColor="#115ede" />

https://i.stack.imgur.com/D6yg3.png

中央

您还可以更改扫描或径向类型的中心。这些值是宽度和高度的分数。您也可以使用 %p 表示法。

android:centerX="0.2"
android:centerY="0.7"

https://i.stack.imgur.com/JVicL.png


完美解释。谢谢
当我需要帮助时,我仍然会参考这个答案。非常感谢您提供如此详细的答案。
M
Majid

试试这个:

<?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:centerColor="#555994"
        android:endColor="#b5b6d2"
        android:startColor="#555994"
        android:type="linear" />

    <corners 
        android:radius="0dp"/>

</shape>

如果我想在背景中放置渐变以进行线性布局怎么办?
@Ankit它将缩放以填充布局
@Ankit:你制作了一个可绘制的 .xml 文件,将上面的代码复制并粘贴到这个文件中,很有趣。
此外,如果您希望渐变在整个屏幕上淡出,请将中心带设置为 50% 的不透明度。在这种情况下“#50555994”
@Pratik Sharma我如何指定从特定部分开始这个渐变?我的意思是我只想从右侧开始改变颜色
C
Community

您可以通过使用 xml Layer-List 将顶部和底部“带”组合到一个文件中来创建这种“半渐变”外观。每个波段都是一个 xml 形状。

有关详细教程,请参阅之前关于 SO 的答案:Multi-gradient shapes


H
Hits

以下链接可能对您有所帮助http://angrytools.com/gradient/。这将在 android 中创建自定义渐变背景,就像在 Photoshop 中一样。


我更喜欢CSS Matic这个,等其他人来
H
Harish

首先你需要创建一个gradient.xml,如下

<shape>
    <gradient android:angle="270" android:endColor="#181818" android:startColor="#616161" />

    <stroke android:width="1dp" android:color="#343434" />
</shape>

然后你需要在布局的背景中提到上面的渐变。如下

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/gradient"
    >   
</LinearLayout>

在我正在阅读的书中谈到将它们放入drawables文件夹中。我需要每个文件夹一个吗?
在drawable文件夹上创建并将gradient.xml文件放入其中您可以访问它。无需创建多个文件夹。
m
miroslavign

或者您可以在代码中使用您在 PSD 中可能想到的任何内容:

    private void FillCustomGradient(View v) {
        final View view = v;
        Drawable[] layers = new Drawable[1];

        ShapeDrawable.ShaderFactory sf = new ShapeDrawable.ShaderFactory() {
            @Override
            public Shader resize(int width, int height) {
                LinearGradient lg = new LinearGradient(
                        0,
                        0,
                        0,
                        view.getHeight(),
                        new int[] {
                                 getResources().getColor(R.color.color1), // please input your color from resource for color-4
                                 getResources().getColor(R.color.color2),
                                 getResources().getColor(R.color.color3),
                                 getResources().getColor(R.color.color4)},
                        new float[] { 0, 0.49f, 0.50f, 1 },
                        Shader.TileMode.CLAMP);
                return lg;
            }
        };
        PaintDrawable p = new PaintDrawable();
        p.setShape(new RectShape());
        p.setShaderFactory(sf);
        p.setCornerRadii(new float[] { 5, 5, 5, 5, 0, 0, 0, 0 });
        layers[0] = (Drawable) p;

        LayerDrawable composite = new LayerDrawable(layers);
        view.setBackgroundDrawable(composite);
    }

它应该比使用图层列表更快
完美地为我工作。谢谢你。
U
Upendranath Reddy
//Color.parseColor() method allow us to convert
// a hexadecimal color string to an integer value (int color)
int[] colors = {Color.parseColor("#008000"),Color.parseColor("#ADFF2F")};

//create a new gradient color
GradientDrawable gd = new GradientDrawable(
GradientDrawable.Orientation.TOP_BOTTOM, colors);

gd.setCornerRadius(0f);
//apply the button background to newly created drawable gradient
btn.setBackground(gd);

从这里参考https://android--code.blogspot.in/2015/01/android-button-gradient-color.html


N
Nate

在可绘制文件夹中使用此代码。

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="#3f5063" />
    <corners
        android:bottomLeftRadius="30dp"
        android:bottomRightRadius="0dp"
        android:topLeftRadius="30dp"
        android:topRightRadius="0dp" />
    <padding
        android:bottom="2dp"
        android:left="2dp"
        android:right="2dp"
        android:top="2dp" />
    <gradient
        android:angle="45"
        android:centerColor="#015664"
        android:endColor="#636969"
        android:startColor="#2ea4e7" />
    <stroke
        android:width="1dp"
        android:color="#000000" />
</shape>

F
Feras Arabiat

为什么不创建图像或 9 Patch 图像并使用它呢?

下面的链接有一个很好的指导如何做到这一点:

http://android.amberfog.com/?p=247

如果您坚持使用 Shape,请尝试以下网站(选择左下角的 Android):http://angrytools.com/gradient/

我已经创建了一个与您在此链接上的类似的渐变(不精确):http://angrytools.com/gradient/?0_6586f0,54_4B6CD6,2_D6D6D6&0_100,100_100&l_269