標籤:
註:本文由Colin撰寫,著作權!轉載請註明原文地址,謝謝合作!
在做Android開發時,我們常常需要為程式設定一個背景,但由於現在的Android裝置尺寸不一,如果隨便設定一個圖片為背景,那麼很可能在不同的裝置上會被展開,給使用者的視覺體驗會很差,那麼如何解決這個問題呢,這裡本菜鳥在此分享一下心得。
一、首先,需要在drawable-mdpi目錄裡定義一個xml檔案,在此我命名為bitmap
編寫如下代碼,src中指定為你要平鋪圖片的名稱:
<?xml version="1.0" encoding="utf-8"?><bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:src="@drawable/img01" android:id="@+id/app_bg" android:tileMode="repeat" />
二、在layout配置主檔案中將最外的架構背景設定為bitmap即可,如下:
<?xml version="1.0" encoding="utf-8"?><ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/content" android:background="@drawable/bitmap"><TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/hello_world" /></ScrollView>
此時,運行虛擬機器看看效果吧。
實現效果如(不含圖中的圓角矩形及半透明效果,圓角矩形的實現請查看下篇文章):
Demo : 下載Android圓角矩形及半透明演式Demo
Android中設定背景圖片平鋪。