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_pressed
和my_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
問候
THX ...我會嘗試...是否有可能使用setBackgroundDrawable()與選擇器?如果是,如何? – zmeda 2012-02-29 13:20:33