Android Button按鈕狀態(normal,focused,pressed)的圖片
大都用drawable "selector" 來實現
類似
btn_background.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/btn_pressed" /> <!-- pressed -->
<item android:state_focused="true"
android:drawable="@drawable/btn_normal" /> <!-- focused -->
<item android:drawable="@drawable/btn_normal" /> <!-- default -->
</selector>
layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/btn_background"
/>
</LinearLayout>
上面這種做法,意味每一個按鈕都要定義它的selector,如果按鈕很多,這工作量不說,也太繁瑣了,現在就碰到一個項目,裡面需要單獨定義的按鈕非常多。
不知各位大俠,有沒有想出方便的方案。多謝了
可以考慮繼承Button或ImageButton做個自定義控件,並在自定義控件中加兩個自定義狀態圖片的屬性(如android:focusedBackground,android:pressedBackground),然後就可以直接在界面的XML裡寫這兩個屬性,如:
< com.xxx.xxx.MyImageButton android:id="xxx"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="xxx"
android:focusedBackground="xxx"
android:pressedBackground="xxx"
/>
關於自定義控件中如何讀取自定義屬性,網上有現成的例子資料參考,如:
http://www.cnblogs.com/xiaoQLu/archive/2011/07/20/2112004.html