码迷,mamicode.com
首页 > 移动开发 > 详细

Android设置背景图片平铺

时间:2017-06-17 20:47:07      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:sch   xmlns   data-   android   apk   bit   color   linear   tracking   

以LinearLayout为例,它提供的background属性将会将背景图片拉伸,相当难看。其实我们仅仅需做少量的改动就能够实现web编程中css背景图片的效果。来试试吧。
创建反复的背景图片
在drawable文件夹下创建一个repeat_bg.xml:
 

<?

xml version="1.0" encoding="utf-8"?>  
 <bitmap xmlns:android="http://schemas.android.com/apk/res/android"   
android:src="@drawable/bg"   
android:tileMode="repeat" />   


然后在布局的xml文件里能够这样引用:
 
    <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@drawable/repeat_bg"> </LinearLayout>   


Android设置背景图片平铺

标签:sch   xmlns   data-   android   apk   bit   color   linear   tracking   

原文地址:http://www.cnblogs.com/clnchanpin/p/7041057.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!