我試圖創建自定義按鈕,我不能看到我的問題。自定義按鈕選擇器
我在res創建/繪製/ custom.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/forwardpress"></item>
<item android:state_focused="true" android:drawable="@drawable/forwardhover"></item>
<item android:drawable="@drawable/forward"></item>
</selector>
和main.xml中我有這個按鈕
<Button
android:id="@+id/bFor"
android:background="@drawable/custom"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right" />
的問題是,按鈕保持presed沒有動畫,(是的我有3個不同的圖片在可繪製的文件夾中)
我已嘗試它無法正常工作。 thx尋求幫助 – sen 2014-10-12 11:44:31