19

在我的应用程序中,我想在我的父视图中获取所有子视图的触摸事件,onTouchListener但我无法得到这个。

例子:

在我的活动视图中,我有一个框架布局,其中包含一些按钮和编辑文本。因此,每当我触摸按钮或编辑文本时,我都想在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;
            }
        });
         }

主.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 中获得触摸坐标(它没有被调用)。

注意:我不想为所有 childViews 添加单独的 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

我已经尝试过类似的设计(在根 FrameLayout 上只有一个 onTouch 侦听器)并且它有效。只要 onTouch 返回 true 而不是 false,我就能得到所有的分数。否则,我只得到第一点。我找不到这个“退货”问题的原因,因为我预计会有相反的行为。

但是,根据我的经验,如果您将任何子视图设置为可点击,则其父视图的 onTouch 将不起作用。如果您有其他解决方案并且可以分享,那就太好了。

于 2012-10-24T12:04:06.167 回答
3

2个解决方案:

  1. ViewGroup 上使用onInterceptTouchEvent,如下所示

  2. 避免让布局处理触摸事件,并拥有一个覆盖其整个大小的布局的子视图来处理触摸事件。

    它不像扩展类那么有效,但它更容易并且不需要创建新的文件/类。

    例子:

    只需将触摸事件添加到视图中,它将处理它们而不是任何其他视图。

于 2015-07-05T08:17:06.420 回答
-3

它可以通过使用“onInterceptTouchEvent”来实现。请试试这个,它可能有效

@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
     onTouchEvent(ev);
     return  false;
}
于 2016-11-04T08:46:08.530 回答