Android设置背景图片平铺

【Android设置背景图片平铺】最是人间留不住,朱颜辞镜花辞树。这篇文章主要讲述Android设置背景图片平铺相关的知识,希望能为你提供帮助。
以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=https://www.songbingjia.com/android/" @drawable/bg"    
android:tileMode=" repeat" />      


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




















    推荐阅读