onTouchEvent 到布局内的布局

onTouchEvent to a Layout inside a layout

我的第一个布局没有显示任何内容。 它上面有一个显示图像的第二个布局。 如何将 onTouchEvent 添加到第二个布局? (我问这个是因为 OnTouchEvent 只影响我的第一个布局......) 它是覆盖另一个相对布局的相对布局

非常感谢。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/camera_layout"
    android:background="#000000">

    <RelativeLayout

        android:orientation="horizontal"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/camera_preview"
        android:layout_alignParentRight="true"
        android:layout_alignParentEnd="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_alignWithParentIfMissing="false"
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="1dp"
        android:visibility="visible">


    </RelativeLayout>
 </RelativeLayout>

我是这样做的:

 final RelativeLayout rt = (RelativeLayout)findViewById(R.id.Test123);
    rt.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View arg0, MotionEvent arg1) {
            Log.d("TOUCHED","PEWPEW");
            rt.onTouchEvent(arg1);
            return true;
        }
    });
}

我的 activity_main.xml 是:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/camera_layout"
android:background="#000000">

<RelativeLayout

    android:orientation="horizontal"
    android:layout_width="100dp"
    android:layout_height="100dp"
    android:id="@+id/Test123"
    android:background="#2d2"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true"
    android:layout_alignParentLeft="true"
    android:layout_alignWithParentIfMissing="false"
    android:layout_alignParentBottom="true"
    android:layout_marginBottom="1dp"
    android:visibility="visible"
    >
</RelativeLayout>

它会说 D/TOUCHED﹕ PEWPEW 每次你触摸 Test123 RelativeLayout 如果你触摸其他它不会触发。