天天看点

Android 背景图片重复平铺 Background repeat

1、在xml文件中实现

在res下创建drawable目录,在drawable目录中创建xml文件:repeat_bg.xml

<?xml version="1.0" encoding="utf-8"?>

<bitmap xmlns:Android="http://schemas.android.com/apk/res/android"

    android:src="@drawable/ic_launcher"

    android:tileMode="repeat" 

    android:dither="true">

</bitmap>

然后在layout下的文件里在 drawable;backgroud=“@drawable/repeat_bg”