我有麻烦应用梯度背景到线性布局。

从我所读到的来看,这应该是相对简单的,但它似乎并不奏效。作为参考,我正在2.1-update1上开发。

header_bg.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:startColor="#FFFF0000"
        android:endColor="#FF00FF00"
        android:type="linear"/>
</shape>

main_header.xml:

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

如果我改变@drawable/header_bg的颜色-例如,#FF0000,它工作得很好。我是不是遗漏了什么明显的东西?


当前回答

我的问题是. XML扩展名没有添加到新创建的XML文件的文件名中。添加.xml扩展名解决了我的问题。

其他回答

尝试删除android: gradienttradius ="90"。这里有一个适合我的方法:

<shape 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle"
>
    <gradient
        android:startColor="@color/purple"
        android:endColor="@color/pink"
        android:angle="270" />
</shape>

我会检查你渐变颜色的alpha通道。对我来说,当我在测试我的代码时,我把alpha通道设置错了颜色,它不适合我。一旦我把alpha频道设置好,它就全部工作了!

好的,我已经设法解决这个使用选择器。参见下面的代码:

main_header.xml:

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

main_header_selector.xml:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item>
    <shape>
        <gradient
            android:angle="90"
            android:startColor="#FFFF0000"
            android:endColor="#FF00FF00"
            android:type="linear" />
    </shape>
</item>
</selector>

希望这能帮助到有同样问题的人。

<?xml version="1.0" encoding="utf-8"?>

<gradient
    android:angle="90"
    android:startColor="@color/colorPrimary"
    android:endColor="@color/colorPrimary"
    android:centerColor="@color/white"
    android:type="linear"/>

<corners android:bottomRightRadius="10dp"
    android:bottomLeftRadius="10dp"
    android:topRightRadius="10dp"
    android:topLeftRadius="10dp"/>

也可以有第三种颜色(中间)。还有不同的形状。

例如在drawable/gradient.xml中:

<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <gradient
        android:startColor="#000000"
        android:centerColor="#5b5b5b"
        android:endColor="#000000"
        android:angle="0" />
</shape>

这给你黑色-灰色-黑色(从左到右),这是我最喜欢的黑色背景atm。

记住在你的布局xml中添加gradient.xml作为背景:

android:background="@drawable/gradient"

也可以旋转,使用:

角= " 0 "

得到一条垂直线

角= " 90 "

得到一条水平线

可能的角度为:

0, 90, 180, 270.

还有几种不同的形状:

安卓:形状=“矩形”

圆形的形状:

安卓:形状=“椭圆”

可能还会更多。