注:本文由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