2011-12-23 77 views
0

我設置了一個xml佈局,其上有一個按鈕,該按鈕同時具有文本和圖像。爲了讓圖像看起來不緊張,我引用了一個位圖xml文件並調整圖像的重力。我還想在用戶點擊按鈕時更改按鈕上的圖像。爲此,我有一個狀態列表xml文件。這兩個組件在提及時都能單獨正確運行,但我似乎只能一次完成這一項。有沒有辦法引用多個可繪製文件,或將它們合併爲一個的方法?參考位圖和狀態列表drawables

homescreen.xml

<Button 
android:id="@+id/bHome" 
android:layout_width="fill_parent" 
android:layout_height="60dp" 
android:layout_weight="2" 
android:background="@drawable/homebutton" 
android:text="Home" 
android:textColor="#FFFFFF" 
android:gravity="bottom|center"> 
</Button>  

homebutton.xml

<bitmap xmlns:android="http://schemas.android.com/apk/res/android" 
android:src="@drawable/homeimage" 
android:gravity="center"/> 

homebuttonclicked.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android" > 
<item android:drawable="@drawable/homeclicked" android:state_pressed="true" ></item> 
<item android:drawable="@drawable/homeclicked" android:state_focused="true"></item> 
<item android:drawable="@drawable/home"></item> 
</selector> 

回答

0

State List爲您提供了可能性,列出幾個可繪爲您希望每個按鈕狀態,包括正常狀態和按下狀態。請按照此文檔資源創建一個適當的狀態列表並將其用作圖像的背景。希望這可以幫助。