さて、それで、私はそれのすべての上に2つのボタンがあるビューを持っています。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:id="@+id/linear"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<Button
android:id="@+id/botonno"
android:layout_width="130dp"
android:layout_height="match_parent"
android:background="@drawable/red_button"
android:layout_weight="0.5"
android:text="NON"
android:textColor="#FFF"
android:textSize="30sp"
android:textStyle="bold" />
<Button
android:id="@+id/botonoui"
android:layout_width="130dp"
android:layout_height="match_parent"
android:background="@drawable/green_buton"
android:layout_weight="0.5"
android:text="OUI"
android:textColor="#FFF"
android:textSize="30sp"
android:textStyle="bold" />
必要なのは、ユーザーが両方のボタンに同時に触れることですが、ユーザーが「ouiButton」または「nonButton」をスクロールしているかどうかを検出する必要があります。
onGestureListenerを使用してみましたが、何も検出されません。
どうもありがとう!