如何在android列表视图中实现fling
我想在列表中的每个项目的列表视图中实现 onfling
(或一些类似的滑动)。如果我滑动该特定项目,它应该在名称旁边显示三个按钮。
有没有什么想法来实现这个。
I would like to implement onfling
(or some similar swipe) in listview in each and every item in list. If I swipe that particular item it should display three buttons next to the name.
Is there any idea to implement this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在手势检测的帮助下实现了这一点:
I have implemented this with the help of gesture detection:
使用
EfficientAdapter
而不是 listview。使用它您可以设置onFling
事件并根据您的需要重写它Use
EfficientAdapter
rather than listview. Using which you can set theonFling
event and override it to your needs