私はクライアント用のAndroid2.2.2アプリケーションを開発していますが、彼は次のことをしたいと考えています。
これで、onClickイベントのあるボタンができましたが、彼は気に入らないので、ユーザーがボタンを離したときに検出したいと考えています。
これが私が使用する必要があると思うView.OnTouchListenerを見つけましたが、onClickで行ったようにこのイベントをxmlに追加する可能性はありますか?
<ImageButton
android:id="@+id/btnSaveNewGate"
android:layout_width="@dimen/btnSaveNewGate_width"
android:layout_height="@dimen/btnSaveNewGate_height"
android:layout_below="@+id/radioGrGateType"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/btnSaveNewGate_marginTop"
android:background="@null"
android:contentDescription="@string/layout_empty"
android:onClick="onSaveNewGateClick"
android:scaleType="fitXY"
android:src="@drawable/save_gate_selector" />
さらに2つの質問があります。
ユーザーが指を離したときに関連付けられるイベントはどれですか?
View.OnTouchListener
代わりに使用を禁止するガイドラインはありますonClick
か?