Android 設定背景圖片定位在 View 的左上角
今天有一張小圖如下
這張圖要定位在某個 TextView 左上角當背景圖 (Layout 也可以)
成果如下圖
步驟如下
一、
首先,在 /res/drawables/ 底下建立一個背景的 xml 描述檔,取叫 myBackground.xml
路徑就是 /res/drawables/myBackground.xml
內容如下面
我的背景圖在 /drawable 裡,叫 my_background,是張 png 圖檔
我希望這張背景圖置於 Layout 的左上角
[sourcecode language=”XML”]
<?xml version="1.0" encoding="utf-8"?>
<bitmap
xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/my_background"
android:gravity="top|left"/>
[/sourcecode]
二、
接著
在 Layout file 裡設定背景為 myBackground.xml
[sourcecode language=”XML”]
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/myBackground"
android:text="測試"/>
[/sourcecode]
資料來源參考 : http://stackoverflow.com/questions/2781593/background-image-placement