1. 程式人生 > >Android設定背景圖片平鋪 建立重複的背景圖片鋪滿螢幕

Android設定背景圖片平鋪 建立重複的背景圖片鋪滿螢幕


建立重複的背景圖片

在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>