在Android Studio中我知道這是可能的選擇,如更改ImageView的同時,按下按鈕
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/your_imagename_while_pressed" />
</selector>
更改按鈕的形象在其不同的狀態,我想知道,如果相同的功能是可用ImageView
,我有4個按鈕,並且想要在按下按鈕時將我的ImageView
更改爲4個對應圖像中的1個。當用戶停止按下按鈕時,我想將ImageView
更改回其原始圖像。
這是行不通的,因爲我的按鍵需要保持透明,我不希望更改按鈕圖像,只需將背景圖片。 – sircrisp