如何从不同的 SQLite 表中获取数据并将其显示在一个 SimpleAdapter Android

How to get data from different SQLite tables and display it in one SimpleAdapter Android

我是 Android 的新手,需要在列表视图中显示开始时间、停止时间和名称。为了显示,我使用了 SimpleAdapter。问题是我有两个 SQLite tables:

Table时间: 开始时间 |停止时间 |学号

Table 学生: 学生证 |学生姓名

现在,我使用 游标 从我的数据库中获取开始时间、停止时间和学生 ID

 Cursor curm1 = myDb.getAllMonday();
 while (curm1.moveToNext()) {
        final HashMap<String, String> resultMapMonday = new HashMap<>();
        resultMapMonday.put("Start", curm1.getString(3));
        resultMapMonday.put("Stop", curm1.getString(4));
        resultMapMonday.put("Student", curm1.getString(5));
        arrayListStudentsName.add(curm1.getString(5));
        listItemsMo.add(resultMapMonday);
 }

然后是一个 SimpleAdapter 来显示它:

final SimpleAdapter adaptersimpleMo = new SimpleAdapter(this, listItemsMo, R.layout.timeslots_configurate,
            new String[]{"Start", "Stop", "Student"},
            new int[]{R.id.oneTime_start, R.id.oneTime_stop, R.id.selectedStudent});

但是我不想显示 id,而是显示存储在另一个 table 中的名称。我可以用另一个游标获得 ID 的匹配名称

Cursor curm2 = myDb.getNamesbyIDs(arrayListStudentsName);
while (curm2.moveToNext()) {
        final HashMap<String, String> resultMapNames = new HashMap<>();
        resultMapNames.put("Name", curm2.getString(1));
}

但我不知道如何在同一个适配器中获取名称以将名称显示在与匹配的开始和停止时间相同的列表项中。

编辑

  public Cursor getAllMonday() {
    SQLiteDatabase db = this.getWritableDatabase();
    Cursor res = db.rawQuery("SELECT * FROM " + TABLE_TIME + " WHERE day = 'Montag' ORDER BY CAST(start as unsigned)", null);
    return res;
}

更改 getAllMonday() 以使用连接 2 table 的查询:

public Cursor getAllMonday() {
    SQLiteDatabase db = this.getWritableDatabase();
    String sql = "SELECT t.Start, t.Stop, s.Studentname FROM " + TABLE_TIME + " AS t INNER JOIN " + TABLE_STUDENT + 
                 " AS s ON s.StudentID = t.StudentID WHERE t.day = 'Montag' ORDER BY CAST(t.start as unsigned)"
    Cursor res = db.rawQuery(sql, null);
    return res;
}

将 table 变量 TABLE_STUDENT 和我使用的列名称更改为实际名称。
现在光标包含学生的名字而不是 id。
接下来将代码更改为:

Cursor curm1 = myDb.getAllMonday();
while (curm1.moveToNext()) {
    final HashMap<String, String> resultMapMonday = new HashMap<>();
    resultMapMonday.put("Start", curm1.getString(curm1.getColumnIndex("Start")));
    resultMapMonday.put("Stop", curm1.getString(curm1.getColumnIndex("Stop")));
    resultMapMonday.put("Student", curm1.getString(curm1.getColumnIndex("Studentname")));
    arrayListStudentsName.add(curm1.getString(curm1.getColumnIndex("Studentname")));
    listItemsMo.add(resultMapMonday);
}
curm1.close();