创建反复的背景图片
在drawable文件夹下创建一个repeat_bg.xml:
<?
xml version="1.0" encoding="utf-8"?>
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/bg"
android:tileMode="repeat" />
然后在布局的xml文件里能够这样引用:
<LinearLayout
android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/repeat_bg"> </LinearLayout>