我想将gridview从以下样式格式化为另一种样式。使用当前代码,它显示第一行是Item1,下面是subitem1(第二行)
而不是我需要相同的单行,第一列应该是Item1,第二列应该是subitem1。
按原样
是
主要Activity.java
public void populateListView() {
Cursor cursor = db.getAllRows();
SimpleCursorAdapter myCursorAdapter;
myCursorAdapter = new SimpleCursorAdapter(getBaseContext(), android.R.layout.simple_list_item_2, cursor, new String[]{DBHelper.FIELD_MATERIALNUM, DBHelper.FIELD_MATERIALDESC,DBHelper.FIELD_QTY},
new int[]{android.R.id.text1, android.R.id.text2}, //<<<< ID's of the 2 views
0);
GridView myList = (GridView) findViewById(R.id.gridView1);
myList.setAdapter(myCursorAdapter);
}