小图片拼成的Background
效果如下:
代码:
在drawable文件夹下创建文件repate_bk.xml
repate_bk.xml
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/ic_launcher"
android:antialias="true"
android:tileMode="repeat">
</bitmap>
在需要设置背景的布局中:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/repate_bk"
android:orientation="vertical" >
</LinearLayout>
OVER!