android設(shè)置重復(fù)背景
創(chuàng)建重復(fù)的背景圖片
在drawable目錄下創(chuàng)建一個repeat_bg.xml: src是引用圖片的名稱
然后在布局的xml文件中可以這樣引用:
1
2
3
4
5
6
7
8 |
1 <LinearLayout android:layout_width= "fill_parent" 2 android:layout_height= "fill_parent" 3 android:background= "@drawable/repeat_bg" > 4 </LinearLayout> |
posted on 2014-02-16 09:59 何云隆 閱讀(204) 評論(0) 編輯 收藏 所屬分類: Android