Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图弄清楚如何创建一个列表视图(最好使用一个 inner_view 以便我可以显示单元格中每个地图条目的某些信息)。有人知道那里有一些好的教程吗?我一直在努力寻找使用地图创建列表视图的完整示例。
您需要做的是扩展BaseAdapter该类以制作您自己的自定义适配器来处理LinkedHashMap. 然后,您可以覆盖与发送数据相关的方法以供ListView显示,以及从内部添加或删除LinkedHashMap。
BaseAdapter
LinkedHashMap
ListView
编辑:查看制作自定义 ArrayAdapter 的示例,因为它类似于将其转换为处理您的 HashMap 实现。