ToggleButton (Api レベル 1) またはSwith (Api レベル 14)をお探しですか?
更新: では、ImageView
クリックも処理できる を使用できます。そしてxmlで:
<ImageView
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@drawable/my_swich"
/>
drawable フォルダーの my_swith.xml 内:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_selected="true" android:drawable="@drawable/selectedImage" />
<item android:drawable="@drawable/normalImage" />
</selector>
OnClickListener
最後に、コードでイメージに設定する必要があります。画像のイベントの場合onClick
、これを行う必要があります:
iv.setSelected(!iv.isSelected());
そして、あなたはカスタムを取得します(あなたはtoogleを所有しています)私はあなたの質問を正しく理解できることを願っています.