ListView生成随机排序的项目

时间:2018-01-02 20:46:23

标签: java android listview layout-inflater

我正在制作一个扫描特定蓝牙设备的应用程序,然后在设备上列出它们。扫描的设备将具有用于以后访问数据的并行阵列。

我的问题:扫描设备后,ListView似乎总是以随机顺序列出对象。换句话说,扫描的第一个设备,例如device [0],将不会与MAC_address [0]对齐。

我需要让ListView按照扫描顺序填充项目。从一些研究中,我认为我的问题在于通货膨胀。

在下图中,您可以看到scan / ListView生成的项目 enter image description here

但是,您可以看到我的日志记录中项目的顺序不同... enter image description here

我对此进行了测试,然后点击"编码"在第一个ListItem上将尝试使用Mac地址00:A0:50:CC:25:5F对设备进行编码。我的阵列都排成一行,而不是项目。因此,我需要以正确的顺序在ListView中生成项目。

这是我在onCreate()

中的SimpleAdapter
// Instantiate the ListView
    resultsListView = findViewById(R.id.scan_screen_listview);
    resultsListView.setOnTouchListener(mGestureListener);

    simpleAdapter = new SimpleAdapter(this, listItems, R.layout.scan_screen_list_item,
            new String[]{"First Line", "Second Line"},
            new int[]{R.id.scan_screen_text1, R.id.scan_screen_text2})
    {
        @Override
        public View getView(final int position, View convertView, ViewGroup parent){

            if(convertView == null){
                Log.e("ConvertView", "ConvertView is NULL");
                LayoutInflater li = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
                convertView = li.inflate(R.layout.scan_screen_list_item, null);
            }

            View v = super.getView(position, convertView, parent);

            Button b1 = v.findViewById(R.id.encode_btn);
            b1.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    Log.e("Button Position", "Encode Position = " + position);
                }
            });

            // Button 2 setup
            Button b2 = v.findViewById(R.id.location_btn);
            b2.setOnClickListener(new View.OnClickListener() {
                @Override
                public void onClick(View v) {
                    Log.e("Button Position", "Location Position = " + position);
                }
            });

            return v;

以下是我的" scan_screen_list_item.xml"

的代码
<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/scan_screen_text1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="15dp"
    android:textSize="21sp"
    android:textColor="#000000"
    android:textStyle="bold"/>

<TextView
    android:id="@+id/scan_screen_text2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="15dp"
    android:textSize="14sp"
    android:textColor="#222222"/>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <Button
        android:id="@+id/encode_btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_marginLeft="15dp"
        android:text="Encode" />

    <Button
        android:id="@+id/location_btn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:layout_marginRight="15dp"
        android:text="Location" />

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

使用Comparator<T>对列表进行排序,以确保您的订单。 Android无法确保您的需求。

Collections.sort(entries, new Comparator<Map.Entry<String, String>>() {
    public int compare(Map.Entry<String, String> a,
            Map.Entry<String, String> b) {
        return a.getValue().compareTo(b.getValue());
    }
});