Android:如何从模式创建背景?

时间:2009-11-09 10:03:00

标签: android background design-patterns

我有一个模式(.png图像4x4px)并且必须用它填充布局。

有谁知道怎么做?

如果我只选择drawable作为背景图像,它会被拉伸;相反,它需要沿x轴和y轴重复。

1 个答案:

答案 0 :(得分:167)

Here是一个非常好的解释:

将“back.png”图片放在“drawable”文件夹中。然后创建一个可绘制的“backrepeat.xml”,如下所示:

<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/back" 
    android:tileMode="repeat" /> 

在您的布局中,添加android:background="@drawable/backrepeat"

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

</LinearLayout>

与许多Android良好实践/方便技巧的情况一样,它可以追溯到Romain Guy。