从图层列表重复颜色​​背景

时间:2017-10-19 17:18:10

标签: java android xml background repeat

我希望在我的RelativeLayout中有一个模式作为背景重复。

   <RelativeLayout
        android:layout_width="0dp"
        android:layout_height="600dp"
        android:layout_weight=".20"
        android:background="@drawable/timetable_background"
        android:tileMode="repeat" >

但是tileMode不起作用,只显示一次运行。 这是我的模式:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:bottom="50dp" android:height="50dp">
        <shape android:shape="rectangle" >
            <solid android:color="@color/timetableEntryBackground1" />
        </shape>
    </item>

    <item android:top="50dp" android:height="50dp">
        <shape android:shape="rectangle" >
            <solid android:color="@color/timetableEntryBackground2" />
        </shape>
    </item>


</layer-list>

我需要改变什么,背景重复?

1 个答案:

答案 0 :(得分:0)

您应该使用tileMode项内的layer-list,如下所示:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:bottom="50dp" android:height="50dp">
        <shape android:shape="rectangle" >
            <solid 
                 android:color="@color/timetableEntryBackground1"
                 android:tileMode="repeat" />
        </shape>
    </item>
    ... 
</layer-list>