1. 程式人生 > >android之ImageButton實現選中改變背景,外加(圖片自動適配元件大小)

android之ImageButton實現選中改變背景,外加(圖片自動適配元件大小)

android之ImageButton實現選中改變背景,附加(圖片自動適配元件大小)

下面是程式碼

<ImageButton 
android:id="@+id/jmxw" 
android:layout_width="fill_parent" 
android:layout_marginLeft="4dip" 
android:layout_height="0dip" 
android:layout_weight="784" 
android:background="@drawable/menupagexw"/>


2.在androidd專案的drawable下新增"android xml file"資源,選擇型別為"selector",檔名為"menupagexw

"

 

3.在menupagexw.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/jmxw_hl"/>
    <item android:state_pressed="false" android:drawable="@drawable/jmxw"/>
</selector>


這樣這個按鈕在選中不和選中的情況下,背景就不一樣了。

 

附加:

android:src=“圖片id”,這時候圖片不會根據元件大小而調整,但是android:background="圖片id",會自動調整圖片顯示比列,來適配元件


原文:http://www.myexception.cn/image/1596451.html