19

私のアプリケーションでは、親ビューのすべての子ビューのタッチイベントを取得したいのですが、onTouchListenerこれを取得できませんでした。

例:

私のアクティビティのビューには、いくつかのボタンと編集テキストを含む1つのフレームレイアウトがあります。したがって、ボタンをタッチしたりテキストを編集したりするときはいつでも、 framlayout のでこのタッチイベントを取得したいと思いますonTouchListeners

これが私のコードです。

アクティビティ:

private FrameLayout rootView;
    @Override
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        rootView = (FrameLayout) findViewById(R.id.rootview);
        rootView.setOnTouchListener(new OnTouchListener()
        {
            @Override
            public boolean onTouch(View v, MotionEvent event)
            {
                Log.e("Touch Event: ", " X: " + event.getX() + " Y: " + event.getY());
                return false;
            }
        });
         }

main.xml:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="10dip"
    android:id="@+id/rootview">

<LinearLayout 
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="@android:color/white"
    android:orientation="vertical"
    android:layout_gravity="center" 
    android:padding="10dip">

     <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:padding="4dp"
                    android:text="Login"
                    android:textColor="@android:color/black"
                    android:textSize="16dp"
                    android:textStyle="bold" />

                <TextView
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="10dp"
                    android:text="Username"
                    android:textColor="@android:color/black"
                    android:textSize="14dp"
                    android:textStyle="bold" />

                <EditText
                    android:id="@+id/edttextusername"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:imeOptions="flagNoExtractUi"
                    android:singleLine="true" />

                <TextView
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="10dp"
                    android:text="Password"
                    android:textColor="@android:color/black"
                    android:textSize="14dp"
                    android:textStyle="bold" />

                <EditText
                    android:id="@+id/edttextpassword"
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:imeOptions="flagNoExtractUi"
                    android:password="true" />

                <LinearLayout
                    android:layout_width="fill_parent"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:gravity="center"
                    android:orientation="horizontal"
                    android:padding="10dp" >

                    <Button
                        android:id="@+id/btnlogin"
                        android:layout_width="0dip"
                        android:layout_height="40dip"
                        android:layout_marginRight="5dp"
                        android:layout_weight="1"
                        android:enabled="false"
                        android:text="Login"
                        android:padding="5dip"
                        android:textColor="@android:color/black"
                        android:textStyle="bold" 
                        />

                    <Button
                        android:id="@+id/btncall"
                        android:layout_width="0dip"
                        android:layout_height="40dip"
                        android:layout_marginLeft="5dp"
                        android:layout_weight="1"
                        android:padding="5dip"
                        android:text="Cancel"
                        android:textColor="@android:color/black"
                        android:textStyle="bold" />
                </LinearLayout>


</LinearLayout>

    </FrameLayout> 

問題:ボタンやエディットテキストをタッチするたびに、フレームレイアウトのonTouchListenerでタッチ調整を取得できません(呼び出されません)。

注:すべてのchildViewに個別のonTouchListenerを追加したくありません。

前もって感謝します。

4

4 に答える 4

24

レイアウトでオーバーライドすることでそれを実現できdispatchTouchEventます。

public class MyFrameLayout extends FrameLayout {
    @Override
    public boolean dispatchTouchEvent(MotionEvent e) {
        // do what you need to with the event, and then...
        return super.dispatchTouchEvent(e);
    }
}

次に、通常の FrameLayout の代わりにそのレイアウトを使用します。

<com.example.android.MyFrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="10dip"
    android:id="@+id/rootview">
  ...

子ビューがイベントを受信しないようにする必要がある場合は、スーパー コールを完全にスキップすることもできますが、これはまれだと思います。デフォルトの機能のすべてではなく一部を再作成する必要がある場合は、書き直すことがたくさんあります。

http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.1.1_r1/android/view/ViewGroup.java#ViewGroup.dispatchTouchEvent%28android.view.MotionEvent% 29

于 2012-11-27T00:01:32.657 に答える
3

2 つの解決策:

  1. ここに示すように、ViewGroup でonInterceptTouchEventを使用します。

  2. レイアウトでタッチ イベントを処理することは避け、レイアウトの子ビューであり、そのサイズ全体をカバーするビューを使用して、タッチ イベントを処理します。

    クラスを拡張するほど効率的ではありませんが、はるかに簡単で、新しいファイル/クラスを作成する必要はありません。

    例:

    タッチ イベントをビューに追加するだけで、他のビューの代わりにそれらを処理します。

于 2015-07-05T08:17:06.420 に答える
3

同様の設計を(ルートFrameLayoutでonTouchリスナーを1つだけ)試してみましたが、うまくいきました。onTouch が false ではなく true を返す場合、すべてのポイントを取得します。それ以外の場合は、最初のポイントを取得します。反対の動作が予想されるため、この「返品」の問題の理由を見つけることができませんでした。

ただし、私の経験に基づいて、子ビューのいずれかをクリック可能に設定すると、その親の onTouch は機能しません。別の解決策があり、共有すれば、それは素晴らしいことです。

于 2012-10-24T12:04:06.167 に答える