如何将 2 行列表收集为 1 行以调用 ContextMenu
如何将 2 行列表收集为 1 行用于调用上下文菜单
有人有一些演示吗?
提前致谢。
How to gathering 2 rows of list to be 1 row for call Context Menu
Does anybody have some demo?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您只需要一个
ListView
来为每个列表视图项提供复杂的布局。有很多选择。使用所需的两行布局创建一个布局文件。然后,使用 SimpleAdapter,或使用 ArrayAdapter 并重写 [getView][3] 函数以填写详细信息。
如果您搜索这些术语中的任何一个,您应该会找到大量教程。
[3]: http://developer.android.com/reference /android/widget/ArrayAdapter.html#getView(int, android.view.View, android.view.ViewGroup)
It sounds like all you need a
ListView
with a complex layout for each list view item.Lots of options. Create a layout file with the two row layout that you want. Then, either use a SimpleAdapter, or use an ArrayAdapter and override the [getView][3] function to fill in the details.
If you search on any of those terms, you should find plenty of tutorials.
[3]: http://developer.android.com/reference/android/widget/ArrayAdapter.html#getView(int, android.view.View, android.view.ViewGroup)