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="@drawable/bg"   
android:tileMode="repeat" />   


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



免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM