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

Android设置背景图片平铺

时间:2014-12-16 17:12:51      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:android   style   http   ar   io   color   sp   on   文件   

以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设置背景图片平铺

标签:android   style   http   ar   io   color   sp   on   文件   

原文地址:http://blog.csdn.net/t80t90s/article/details/41961057

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