Android 安排可展开的列表视图内容
Android arrange expandable listview content
我在 youtube 上得到了这个关于 expandablelistviews 的教程,这里是他给的源代码,http://easyway2in.blogspot.in/2014/10/android-expandable-listview.html,问题是 activity 启动时内容没有排列。如何排列listview的内容,代码在link?
HashMap 是无序的。
This class makes no guarantees as to the order of the map; in
particular, it does not guarantee that the order will remain constant
over time.
如果要保留插入顺序,请使用 LinkedHashMap。
我在 youtube 上得到了这个关于 expandablelistviews 的教程,这里是他给的源代码,http://easyway2in.blogspot.in/2014/10/android-expandable-listview.html,问题是 activity 启动时内容没有排列。如何排列listview的内容,代码在link?
HashMap 是无序的。
This class makes no guarantees as to the order of the map; in particular, it does not guarantee that the order will remain constant over time.
如果要保留插入顺序,请使用 LinkedHashMap。