列表视图中的多个滑动抽屉
我有一个列表视图,对于每个列表项我都有独特的抽屉。所以我的问题是
1.如何实现一次打开单个抽屉(手柄上的单击),从而导致其他抽屉如果打开则关闭。
2.如何减少手柄与其内容容器之间的纵向/横向空间/间隙。
帮助表示赞赏。
I have a listview, for each list item i have unique drawer. So my question is
1.how to achieve opening of single drawer (onclick of handle) at a time resulting into other drawers to be closed if opened.
2.how to decrease the space/gap in both portrait/landscape between the handle and its content container.
Help Appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果它能正常工作,我会感到震惊。
对其他抽屉调用
close()
。尝试在适当的一侧添加一些边距(例如,
android:layout_marginBottom="4dip"
)。I will be stunned if that works properly.
Call
close()
on the other drawers.Try adding some margin to the appropriate side (e.g.,
android:layout_marginBottom="4dip"
).