您的位置:首页 > 移动开发 > Android开发

Android 背景图片重复平铺 Background repeat

2017-07-29 14:29 441 查看
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”
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: