不缩放的渐变背景

时间:2012-03-13 16:03:44

标签: android background gradient

我需要创建一个230dp高的渐变(即不是整个屏幕),屏幕的其余部分是纯色。我无法弄清楚如何做到这一点 - 我尝试的一切都以渐变扩展来填满整个屏幕。我目前的XML看起来像这样:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item android:top="230dp">
        <shape android:shape="rectangle" >
            <color android:color="#333333" />
        </shape>
    </item>
    <item>
        <shape android:shape="rectangle" >
            <gradient
                android:angle="270"
                android:endColor="#333333"
                android:startColor="#D9D9D9"
                android:type="linear" />

            <size android:height="230dp" />
        </shape>
    </item>

</layer-list>

然后我将这个drawable作为背景应用于XML中的LinearLayout:

<?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="fill_parent"
    android:background="#333333" >
    <LinearLayout
        android:id="@+id/container"
        android:orientation="vertical"
        android:layout_height="fill_parent"
        android:layout_width="fill_parent"
        android:background="@drawable/grey_gradient_bg" >

        <!-- a bunch of content, buttons, etc. -->

    </LinearLayout>
</LinearLayout>

但是渐变扩展到整个屏幕。

我尝试使用PNG作为背景,但我得到了the banding problems described here,修复程序对我没有帮助。

4 个答案:

答案 0 :(得分:3)

  1. 使用RelativeLayout而不是LinearLayout
  2. 不使用渐变作为布局主容器的背景,而是添加子视图,将高度显式设置为所需大小(230dp),并将该视图的背景设置为渐变。

答案 1 :(得分:1)

这样的事可能对你有所帮助:)。

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

您遇到的问题是因为您的布局在高度上有fill_parent

希望这会对你有所帮助。

祝你好运, Arkde

答案 2 :(得分:1)

如果您的项目不需要API <21,则可以直接在可绘制对象中设置渐变大小,如下所示:

customOrderedIdList

无论如何,要在没有这种行为的情况下支持API <21,您可以在drawable-v21中添加此drawable,然后添加另一个具有相同名称的drawable,但不添加android:height =“ 230dp”。
在渐变标签或尺寸中设置高度确实不起作用。

答案 3 :(得分:0)

这是我使用其他答案的解决方案:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#333333" >

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="230dp"
        android:background="@drawable/grey_gradient_bg"
        android:layout_alignParentTop="true" />

    <LinearLayout
        android:id="@+id/container"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical"
        android:layout_alignParentTop="true" >

    <!-- all the content -->
    </RelativeLayout>
</RelativeLayout>

grey_gradient_bg现在很简单:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >

    <gradient
        android:angle="270"
        android:endColor="#333333"
        android:startColor="#D9D9D9"
        android:type="linear" />

</shape>