gpt4 book ai didi

android - 将触摸事件转发到动态附加 View ,无需抬起手指

转载 作者:行者123 更新时间:2023-11-29 20:52:41 24 4
gpt4 key购买 nike

我有一个问题,我现在正在努力解决。

我有一个布局,里面有一个按钮和一个容器。

<FrameLayout ... >

<Button
android:id="@+id/button"
...
/>

<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/overlayContainer"/>

</FrameLayout>

我的目标是,当我长按按钮时,我将一个自定义 View MyCustomView 附加到容器并按住手指。理想情况下,应将以下所有(ACTION_MOVEACTION_UP)事件分派(dispatch)给 MyCustomView 并由其评估。

MyCustomView 的工作方式类似于圆形弹出菜单:它覆盖、调暗背景并显示一些选项。然后,您将按下的手指滑动到该选项,将其抬起,它会触发一个结果。

mButton.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
// attach custom view to overlayContainer
// simplified code for demonstration
overlayContainer.addView(new MyCustomView());
return true;
}
});

现在我没有看到任何选项可以从 Button 中“窃取”ACTION_DOWN-Event(这是启动事件流到 View 所必需的),因为我在它上面。当我附加它时,在 MyCustomView 中手动生成和发送 ACTION_DOWN 事件也不起作用。

在研究时我在这里找到了这篇文章,它基本上是相同的要求,但对于 iOS(也没有提供优雅的解决方案,除了点击捕获叠加 View ):How to preserve touch event after new view is added by long press

请注意,我想避免在主视图上进行某种全局覆盖,我希望该解决方案尽可能具有可插拔性和可移植性。

感谢您的任何建议。

最佳答案

在评论提示后回答我自己的问题:

我使用 TouchDelegate 的裸露版本解决了这个问题(不得不扩展它,因为不幸的是它没有接口(interface) - setTouchDelegate 只接受 TouchDelegate(子)类。不是 100% 干净,但效果很好。

public class CustomTouchDelegate extends TouchDelegate {

private View mDelegateView;

public CustomTouchDelegate(View delegateView) {
super(new Rect(), delegateView);
mDelegateView = delegateView;
}

public boolean onTouchEvent(MotionEvent event) {
return mDelegateView.dispatchTouchEvent(event);
}
}

然后在我的 onLongClick 方法中:

mButton.setOnLongClickListener(new View.OnLongClickListener() {
@Override
public boolean onLongClick(View v) {
// attach custom view to overlayContainer, simplified for demonstration

MyCustomView myMenuView = new MyCustomView()
mButton.setTouchDelegate(new CustomTouchDelegate(myMenuView));

// What's left out here is to mButton.setTouchDelegate = null,
// as soon as the temporary Overlay View is removed

overlayContainer.addView(myMenuView);
return true;
}
});

这样,我所有的ACTION_MOVE来自 Button 的事件被委托(delegate)给 MyCustomView (并且可能需要也可能不需要坐标的一些翻译)- 瞧瞧。

感谢 pskink 的提示。

关于android - 将触摸事件转发到动态附加 View ,无需抬起手指,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28693387/

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