Android 中自定义事件调度的示例?
我有一个场景如下,想知道是否有人有好的解决方案。基本上,我有一个管理自定义 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论