首页 > 代码库 > Android设置背景图片平铺
Android设置背景图片平铺
以LinearLayout为例,它提供的background属性将会将背景图片拉伸,相当难看。其实我们仅仅需做少量的改动就能够实现web编程中css背景图片的效果。来试试吧。
创建反复的背景图片
在drawable文件夹下创建一个repeat_bg.xml:
<?
<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
android:src=http://www.mamicode.com/"@drawable/bg"
android:tileMode="repeat" />
然后在布局的xml文件里能够这样引用:
<LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/repeat_bg"> </LinearLayout>
创建反复的背景图片
在drawable文件夹下创建一个repeat_bg.xml:
<?
xml version="1.0" encoding="utf-8"?>
android:src=http://www.mamicode.com/"@drawable/bg"
android:tileMode="repeat" />
然后在布局的xml文件里能够这样引用:
Android设置背景图片平铺
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。