我想在程序中設置當點擊和釋放 imageButton 時,改變它的圖像。當再次點擊和釋放時,圖像就會被改回去,如何實現呢?
我試著使用 selector,但是還是沒有實現,請大家幫忙。
使用下面的 selector
<?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/pressedImage"/>
<item
android:state_focused="true"
android:drawable="@drawable/normalImage"/>
<item android:drawable="@drawable/normalImage"/>
</selector>