我在XML如何適應PNG背景圖片
<Button android:layout_height="wrap_content"
android:id="@+id/send"
android:layout_width="50dip"
android:background="@drawable/button_back">
</Button>
和它的背景是這樣「button_back.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/back_pressed" /> <!-- pressed png -->
<item android:state_focused="true"
android:drawable="@drawable/back_focused" /> <!-- focused png -->
<item android:drawable="@drawable/back_normal" /> <!-- default png -->
</selector>
創建圖像按鈕的ImageButton在Android SDK中的大小它的工作正常,但我的問題是,我的按鈕寬度是50,我的圖像PNG寬度是70. 我怎麼能適應這個PNG自動調整到我的按鈕寬度。現在,無論我給我的按鈕的寬度取決於圖像寬度的大小。
有人可以幫助我如何做到這一點。
謝謝
注:draw9patch是一個程序在Android SDK在tools目錄中。 – PedroAGSantos 2011-06-01 06:43:42