css中的图片平铺是使用的css样式,现在看看我们android的图片背景平铺是怎样的吧。
1. 现在res创建一个drawable文件夹.
2.在drawable创建一个xml文件: dot_line_repeat.xml
代码如下:
<?xml version="1.0" encoding="utf-8"?>
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/dot_repeat"
android:tileMode="repeat"
>
</bitmap>
3. 在布局文件中的使用:
<TextView
android:layout_width="fill_parent"
android:layout_height="20dp"
android:background="@drawable/dot_line_repeat"
/>
通过以上,就完成了,xml配置图片背景平铺了,是不是很简单呢?