gpt4 book ai didi

android - onTouchEvent 到布局内的布局

转载 作者:搜寻专家 更新时间:2023-11-01 08:41:20 27 4
gpt4 key购买 nike

我的第一个布局没有显示任何内容。它上面有一个显示图像的第二个布局。如何将 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 如果你触摸其他它不会触发。

关于android - onTouchEvent 到布局内的布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32319334/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com