0

好吧,所以,我有一个视图,上面有两个 Button。

<?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,但它没有检测到任何东西.....有人知道吗?

非常感谢!

4

1 回答 1

0

尝试 :

Button ouiButton = (Button) view.findByViewId(R.id.botonoui);
ouiButton.didTouchFocusSelect();

或者

ouiButton.setOnGenericMotionListener(new OnGenericMotionListener() {
//Insert code here
});
于 2012-12-14T18:40:57.470 回答