android中达到类似于windows桌面背景的平铺的效果,定义一个bitmap对象,在xml中和代码中均可,设置其tileMode为repeat。
在drawable文件夹下建立如下文件tilebg.xml:
<?xml version ="1.0" encoding ="utf-8" ?>
<bitmap xmlns:android ="http://schemas.android.com/apk/res/android"
android:src ="@drawable/pattern"
android:tileMode ="repeat" />
来源: http://blog.csdn.net/zhangyadick18/article/details/7227575