Android 中自定义事件调度的示例?

发布于 2024-11-07 11:04:25 字数 346 浏览 0 评论 0原文

我有一个场景如下,想知道是否有人有好的解决方案。基本上,我有一个管理自定义 ViewFlipper 对象的类。 ViewFlipper 实例中的这些视图之一由带有自定义行的自定义 ScrollView 组成(位于行的 ArrayList 中的 mRows 中)。在自定义 ScrollView 类中,我有循环...

    for (CustomRow : mRows)
    { 
        row.setOnTouchListener(this);
    }

在 onTouch 侦听器中,我希望能够通知顶级视图(保存对 ViewFlipper 实例的引用的对象)。做到这一点最有效的方法是什么?

I have a scenario below, and was wondering if anyone had a good solution. Basically, I have a class which manages a custom ViewFlipper object. One of these views within the ViewFlipper instance consists of a custom ScrollView with custom rows (which reside in mRows an ArrayList of the rows). In the custom ScrollView class I have the loop...

    for (CustomRow : mRows)
    { 
        row.setOnTouchListener(this);
    }

In the onTouch listener I want to be able to notify the top level view (the object that holds the reference to the ViewFlipper instance). What is the most efficient way to do this?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文