所以我在Android Studio中有两行代码用于ListView。
ListView resultsListView = (ListView) findViewById(R.id.AboutListView);
HashMap<String, String> nameAddresses = new HashMap<>();
nameAddresses.put("Diana", "3214 Broadway Avenue");
nameAddresses.put("Tyga", "343 Rack City Drive");
nameAddresses.put("Rich Homie Quan", "111 Everything Gold Way");
nameAddresses.put("Donna", "789 Escort St");
nameAddresses.put("Bartholomew", "332 Dunkin St");
nameAddresses.put("Eden", "421 Angelic Blvd");
List<HashMap<String, String>> listItems = new ArrayList<>();
SimpleAdapter adapter = new SimpleAdapter(this, listItems, R.layout.list_item,
new String[]{"First Line", "Second Line"},
new int[]{R.id.line1, R.id.line2});
Iterator it = nameAddresses.entrySet().iterator();
while (it.hasNext())
{
HashMap<String, String> resultsMap = new HashMap<>();
Map.Entry pair = (Map.Entry)it.next();
resultsMap.put("First Line", pair.getKey().toString());
resultsMap.put("Second Line", pair.getValue().toString());
listItems.add(resultsMap);
}
resultsListView.setAdapter(adapter);
list_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView android:id="@+id/line1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/colorAccent"
android:textSize="21sp"
android:textStyle="bold"
/>
<TextView android:id="@+id/line2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="16sp"
android:textColor="@android:color/holo_green_dark"
android:textStyle="bold"
/>
由于某种原因,这些物品没有显示出我想要的样子。它们以随机顺序显示,而不是按照在代码中格式化的顺序显示。 app preview
我该如何解决?
答案 0 :(得分:0)
不能保证对HashMap
进行迭代可以按添加元素的顺序来访问元素。如果需要该属性,请使用LinkedHashMap
或ArrayList
。前者将使您更容易将现有代码转换为,只需替换
HashMap<String, String> nameAddresses = new HashMap<>();
使用
LinkedHashMap<String, String> nameAddresses = new LinkedHashMap<>();