光标数组进入 ListView 但多列

Posted

技术标签:

【中文标题】光标数组进入 ListView 但多列【英文标题】:Cursor Array into ListView but multiple columns 【发布时间】:2020-06-03 23:45:51 【问题描述】:

我目前通过数据库查询获取游标数据,将每个选择放入一个数组中,然后显示在我的三个列表视图之一中。

public void insertData() 
    ListView listView = (ListView) findViewById(R.id.listWorkouts1);
    ListView listView2 = (ListView) findViewById(R.id.listWorkouts2);
    ListView listView3 = (ListView) findViewById(R.id.listWorkouts3);
    SQLiteController db = new SQLiteController(this);
    String username = ma.id;
    //populate an ArrayList<String> from the database and then view it
    ArrayList<String> theList1 = new ArrayList<>();
    ArrayList<String> theList2 = new ArrayList<>();
    ArrayList<String> theList3 = new ArrayList<>();
    ArrayList<String> finalList = new ArrayList<>();
    Cursor data = db.getUserListContents(username);

    if (data.getCount() == 0) 
        Toast.makeText(this, "There are no contents in this list!", Toast.LENGTH_LONG).show();
     else 
        while (data.moveToNext()) 
            theList1.add(data.getString(0));
            theList2.add(data.getString(1));
            theList3.add(data.getString(2));

            ListAdapter listAdapter = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, theList1);
            listView.setAdapter(listAdapter);

            ListAdapter listAdapter2 = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, theList2);
            listView2.setAdapter(listAdapter2);

            ListAdapter listAdapter3 = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, theList3);
            listView3.setAdapter(listAdapter3);
        
    

问题是用户可以分别滚动浏览三个列表视图中的每一个。

如何只使用一个listView,而将要在不同列中查看的数据分开?

默认情况下,它会列出前一个值下的所有内容。

每次执行 While 循环,我都希望数据显示在同一行,而不是一个在另一个之下。

感谢任何帮助。

【问题讨论】:

你想要单杠吗? 【参考方案1】:

在您的情况下,您可以使用 RecyclerViewGridLayoutManager。这是basic implementation example。您也可以查看this tutorial。

您实际上可以创建一个对象并将该对象的列表传递给您的适配器以从那里加载项目,而不是单独的列表。例如,考虑以下类。

public class Workout 
    public String name;
    public String date;
    public String weight;

现在从cursor 读取值时,创建Workout 类的对象并创建List&lt;Workout&gt;,然后修改您的适配器以传递此列表。

我希望我能给你一个优雅地实现它的想法。

【讨论】:

以上是关于光标数组进入 ListView 但多列的主要内容,如果未能解决你的问题,请参考以下文章

Android App 在片段中创建 ListView 引用时关闭

使用 Kotlin 从 Android 上 ViewModel 中的 LiveData 更新 ListView 中的元素

Android ListView随手缓慢滑动时有残影现象

Flutter - 如何在 Listview 构建器顶部添加项目?

用于多列使用的 ListView 与 ListBox

通过自定义listView同时选择和搜索不起作用