首页 > 解决方案 > MultiLine Listview 随机排序

问题描述

所以我在 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"
/>

并且由于某种原因,这些项目没有按我想要的方式显示。它们以随机顺序显示,而不是按照它们在代码中格式化的顺序。 应用预览

我怎样才能解决这个问题?

标签: javaandroid

解决方案


迭代 aHashMap不能保证以与添加元素相同的顺序访问元素。如果需要该属性,请使用 aLinkedHashMap或 an ArrayList。前者将更容易让您将现有代码转换为,只需替换

HashMap<String, String> nameAddresses = new HashMap<>();

LinkedHashMap<String, String> nameAddresses = new LinkedHashMap<>();

推荐阅读