ImageButton があり、そのためのセレクターを作成したので、imageButton を押すと、別の画像が表示されます。しかし、画像ボタンを押すと、画像を変更する前に1秒待たなければならないようです。それはユーザーエクスペリエンスにとって本当に良くありません..
これを修正する可能性はありますか?いくつかの回答を調べましたが、これを変更する場所がわかりません。
これが私のコードです
セレクタ:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_pressed="true"
android:state_enabled="true"
android:drawable="@drawable/main_pressed" />
<item
android:state_enabled="true"
android:drawable="@drawable/main" />
</selector>
レイアウトファイル
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/bg" >
<ImageButton
android:id="@+id/mainMosque"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@null"
android:contentDescription="@string/mainMosque"
android:src="@drawable/main_btn_mosque" />
</RelativeLayout>