我正试图使用HashMap和SimpleAdapter从具有12列和12行的嵌套数组中填充ListView
这是我的代码
try {
String [][] array2 = new String[cursor.getCount()][cursor.getColumnCount()];
cursor.moveToFirst();
for (int i =0; i<cursor.getCount();i++){
for(int j = 0; j < cursor.getColumnNames().length; j++) {
String uname = cursor.getString(j);
array2[i][j]=uname;
}
cursor.moveToNext();
}
} finally {
cursor.close();
}
然后是带有hashmap 的简单适配器
int[] to = new int[]{R.id.item2, R.id.item3, R.id.item4, R.id.item5, R.id.item6, R.id.item7, R.id.item8 ,R.id.item9, R.id.item10, R.id.item11, R.id.item12};
List<HashMap<String,String>> fillMaps = (List<HashMap<String, String>>) new ArrayList<HashMap<String, String>>();
for(int i = 0; i<10;i++){
HashMap<String,ArrayList> map = new HashMap<String, ArrayList>();
}
SimpleAdapter adapter = new SimpleAdapter(this, fillMaps, R.layout.grid_item, array2, to);
当我尝试这个时,我得到一个错误
android.widget.SimpleAdapter
中的SimpleAdapter(android.content.Context, java.util.List<? extends java.util.Map<java.lang.String,?>>, int, java.lang.String[], int[])
'无法应用于(com.example.thevenom1215.prueba.MainActivity, java.util.List<java.util.HashMap<java.lang.String, java.lang.String>>, int, java.util.ArrayList<java.lang.String>, int[])
或者我想我可以把嵌套数组转换成一个简单的数组,这可能吗?如果是的话,我该如何做到这一点?我试过这个
String from [] = new String from[252]:
from[0]= array[0][1]+"|"+array[0][2]+"|"+array[0][3]+......+array[0][12];
但它不起作用。
在作为array2[12][21]
的array2
中,每行具有12列,这些列是人的信息,例如(name, age)
Cesar Joel Gurrola, xx
阵列的第一行是:[Cesar, Joel, Gurrola, xx]
我需要在数组中使用它,因为在我的代码中,我需要String
乘以String
,而不是整个字符串"Cesar, Joel, Gurrola, xx"
Sql查询
sql="select b.CVE_CONTR, r.NO_RECIBO , a.NOM_SOLICIT ,r.NO_PARCIAL ,r.SDO_TOTAL, r.STS_PAGO ,a.AP_PATSOLICIT,a.AP_MATSOLICIT, " +
"f.DESCRIPCION, b.NO_PARCIALID , b.PAGO_PARCIAL, b.TOT_APAG from MFRF_M_SOLICITANTES a, MFRF_M_CONTPREV_H b, MFRF_M_CONTPREV_D_RECGEN_2 r," +
"C_PAQUETE f , C_PARCIALIDADES g, MFRF_C_COLONIAS c where b.CVE_CONTR = '"+etnumcontrato.getText().toString() + "' and r.STS_PAGO in ('1','10','11','12')" +
"and c.ID_COLONIA = a.ID_COLONIA and f.ID_PAQUETE = b.ID_PAQUETE and g.ID_PARCIALIDAD = b.ID_PARCIAL AND a.ID_SOLICIT = b.ID_SOLICITANTE ";
总的来说,我不建议这样做。
String [][] array2 = new String[cursor.getCount()][cursor.getColumnCount()];
适配器一次显示一个行项目,而不是整个表。
我建议使用CursorAdapter
,因为您确实有一个Cursor
对象,但我将继续使用SimpleAdapter
。
首先,您需要创建一个XML布局,将其命名为item_layout.xml
。它包含了要将数据库中的行绑定到的所有视图。我认为这些视图都必须是SimpleAdapter的TextViews。
String[] from = new String[] {"rowid", "fname", "mname", "lname"};
int[] to = new int[] { R.id.item1, R.id.item2, R.id.item3, R.id.item4 };
然后,在光标的行上循环,并将必要的信息提取到HashMaps列表中。注意:这是每次在光标结果上循环时一行的数据。而且,如前所述,您只有TextViews,因此只能存储String值。
List<HashMap<String, String>> fillMaps = new ArrayList<HashMap<String, String>>();
final int rows = cursor.getCount();
for (int i = 0; i < rows; i++) {
HashMap<String, String> map = new HashMap<String, String>();
map.put("rowid", "" + i);
map.put("fname", cursor.getString(cursor.getColumnIndexOrThrow("fname"));
map.put("mname", cursor.getString(cursor.getColumnIndexOrThrow("mname"));
map.put("lname", cursor.getString(cursor.getColumnIndexOrThrow("lname"));
fillMaps.add(map);
cursor.moveToNext();
}
既然您已经遍历了数据的所有行,并且对这些数据感到满意,那么只需设置适配器即可。
SimpleAdapter adapter = new SimpleAdapter(this, fillMaps,
R.layout.item_layout,
from, to);
listView.setAdapter(adapter);