安卓设置背景图平铺,同时设置背景色

China☆狼群 提交于 2019-12-06 10:32:40

安卓设置背景图平铺,同时设置背景色需要在drawable中新建一个background_line_pantone.xml:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

    <!--背景色-->
    <item>
        <shape>
            <solid android:color="#7BB137" />
        </shape>
    </item>

    <!--背景图平铺-->
    <item>
        <bitmap xmlns:android="http://schemas.android.com/apk/res/android"
            android:src="@mipmap/line"
            android:tileMode="repeat" />
    </item>
</layer-list>

然后再需要用到的地方使用 

android:background="@drawable/background_line_pantone"

进行设置.

 

如果只需要平铺背景图片,则xml中只需要第二个item中的bitmap即可

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!