程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android按鈕-關於設置Android Button按鈕狀態(normal,focused,pressed)圖片,有沒有簡便的方法

android按鈕-關於設置Android Button按鈕狀態(normal,focused,pressed)圖片,有沒有簡便的方法

編輯:編程綜合問答
關於設置Android Button按鈕狀態(normal,focused,pressed)圖片,有沒有簡便的方法

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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved