1

比方说,有一个这样的RelativeLayout:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:eve="http://schemas.android.com/apk/res/com.yyg.kaolamusic"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:id="@+id/A"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <LinearLayout
        android:id="@+id/B"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true" />
</RelativeLayout >

那么,如果我们触摸 B 但 B 不处理该触摸事件,我们如何避免触摸事件传递给子 A?

4

1 回答 1

0

您可以为始终使用触摸事件的视图 B 设置触摸侦听器,因此 A 永远不会获得触摸事件。

示例代码:

mA = (LinearLayout) getView().findViewById(R.id.A);
    mA.setOnTouchListener(new OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            Toast.makeText(getActivity(), "Touch A",Toast.LENGTH_LONG).show();
            return false;
        }
    });
    mB = (LinearLayout) getView().findViewById(R.id.B);
    mB.setOnTouchListener(new OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            Toast.makeText(getActivity(), "Touch B",Toast.LENGTH_LONG).show();
            return true;
        }
    });
于 2012-10-19T06:38:18.443 回答