阻止触摸传递到下表面视图

发布于 2024-11-03 23:28:13 字数 1548 浏览 0 评论 0 原文

我在 Android 中的 GLSurfaceView 上有一个 SurfaceView

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
> 

<my.project.ActionSurface
    android:id="@+id/actionSurface"
    android:layout_marginBottom="30dip" 
    android:layout_marginLeft="20dip" 
    android:layout_marginRight="20dip" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_gravity="center_horizontal"
/>

<fi.harism.curl.CurlView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:id="@+id/larryMoeCurly"
/>
</RelativeLayout>

(非常感谢 harism页面卷曲代码!)

在我的 ActionSurface 中,我用它来检测触摸:

public boolean onTouchEvent(MotionEvent event) {
    if (event.getAction() == MotionEvent.ACTION_DOWN) {
        newX = (int) event.getX();
        newY = (int) event.getY();
        diffX = newX - x;
        diffY = newY - y;
        Log.d(TAG, "touched at x:" + newX + " y:" + newY);
    }
    return true;
}

当我触摸我的 ActionSurface 时,它​​会正确响应,但触摸也会传递到 CurlView。如何阻止触摸“穿过”另一个表面?

I have a SurfaceView "over" a GLSurfaceView in Android.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
> 

<my.project.ActionSurface
    android:id="@+id/actionSurface"
    android:layout_marginBottom="30dip" 
    android:layout_marginLeft="20dip" 
    android:layout_marginRight="20dip" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_gravity="center_horizontal"
/>

<fi.harism.curl.CurlView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:id="@+id/larryMoeCurly"
/>
</RelativeLayout>

(Many thanks to harism for his page curl code!)

In my ActionSurface, I have this to detect touches:

public boolean onTouchEvent(MotionEvent event) {
    if (event.getAction() == MotionEvent.ACTION_DOWN) {
        newX = (int) event.getX();
        newY = (int) event.getY();
        diffX = newX - x;
        diffY = newY - y;
        Log.d(TAG, "touched at x:" + newX + " y:" + newY);
    }
    return true;
}

When I touch my ActionSurface, it responds correctly, but the touch goes through to the CurlView as well. How do I stop the touch from "passing through" to the other surface?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

电影里的梦 2024-11-10 23:28:13

您可以将 OnTouchListener 添加到表面视图,并在那里捕获事件(返回 true):

this.setOnTouchListener(new View.OnTouchListener()
{
    @Override
    public boolean onTouch(View v, MotionEvent event)
    {
        return true;
    }
});

you could add an OnTouchListener to your surface view, and catch the event there (return true):

this.setOnTouchListener(new View.OnTouchListener()
{
    @Override
    public boolean onTouch(View v, MotionEvent event)
    {
        return true;
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文