关于Android View Touch事件

时间:2016-09-13 09:02:33

标签: android view touch

当我研究Android View Touch事件时,我遇到了一个非常奇怪的问题。我在下面有一个布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/activity_main"
    android:layout_width="match_parent" android:layout_height="match_parent"
    android:orientation="vertical">

    <TextView
        android:id="@+id/tv1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!" />

</LinearLayout>

我在textview和linearlayout中添加了触摸侦听器。如下:

private final static String TAG = MainActivity.class.getSimpleName();

LinearLayout llMain;
TextView tv1;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    llMain = (LinearLayout) findViewById(R.id.activity_main);
    tv1 = (TextView) findViewById(R.id.tv1);
    llMain.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            switch (event.getAction()) {
                case MotionEvent.ACTION_DOWN:
                    Log.d(TAG, "Layout: Down");
                    return true;
                case MotionEvent.ACTION_UP:
                    Log.d(TAG, "Layout: UP");
                    return false;
                default:
                    return false;
            }
        }
    });
    tv1.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            switch (event.getAction()) {
                case MotionEvent.ACTION_DOWN:
                    Log.d(TAG, "TextView: Down");
                    return false;
                case MotionEvent.ACTION_UP:
                    Log.d(TAG, "TextView: UP");
                    return false;
                default:
                    return false;
            }
        }
    });
}

@Override
public boolean onTouchEvent(MotionEvent event) {
    switch (event.getAction()) {
        case MotionEvent.ACTION_DOWN:
            Log.d(TAG, "Activity: Down");
            return true;
        case MotionEvent.ACTION_UP:
            Log.d(TAG, "Activity: UP");
            return true;
    }
    return super.onTouchEvent(event);
}

我的问题是:当我按下textview时,执行的事件的顺序是:“TextView:Down” - &gt; “TextView:UP” - &gt;活动:向上。为什么不执行linearlayout的onTouch方法?

1 个答案:

答案 0 :(得分:0)

因为您单击TextView,所以优先级将是TextView,在该布局封面之后。我觉得这很正常。您可以发布活动:向上

的代码

我搜索并找到了这样的答案: 如果返回false,则下一个侦听器处理该事件。如果它返回true,则事件由侦听器使用,而不是发送到下一个方法。

例: 如果您使用tv1ACTION_DOWN设置ACTION_UP,则返回true - &gt;它不会向外发送任何事件,因此线性或活动无法获得该事件。 并且您将更改为false以查看更改。