2012-02-29 57 views
1

我想在具有基於狀態的背景圖像(此圖像不是9修補)和文本的XML佈局(如果可能)中創建「按鈕」。使用哪個組件?具有圖像背景和文本及有狀態功能的Android按鈕

button_states.xml樣子:

<?xml version="1.0" encoding="UTF-8"?> 
<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
    <item android:state_pressed="true" android:drawable="@drawable/my_pressed" /> 
    <item android:drawable="@drawable/my_normal" /> 
</selector> 

my_pressedmy_normal 9修補的圖像。

現在,如果我使用普通的按鈕

<Button 
    android:id="@+id/my_button" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:background="@drawable/button_states" 
    android:text="@string/my_text" /> 

按鈕,它是沒有背景圖像渲染。

如何用文本和狀態「靜態」背景做「按鈕」?

THX

問候

回答

0

達到這一目的的最簡單方法是在代碼中這樣做。使用(常規)按鈕上的setBackgroundDrawable()設置所需的背景。如果你使用選擇器作爲提供的drawable,你應該沒問題。

[編輯]要做到這一點使用的資源,將您button_state.xml在res \在使用中可繪製文件夾下面的代碼:

Button button = (Button) findViewById(R.id.my_button); 
button.setBackgroundResource(R.drawable.button_state); 
+0

THX ...我會嘗試...是否有可能使用setBackgroundDrawable()與選擇器?如果是,如何? – zmeda 2012-02-29 13:20:33