我有一个应用程序,它有一个包含多个字段的车辆数据库。然后我有一个 ListView,我想在其中显示一些字段。目前我有这个:
SimpleCursorAdapter vehicleAdapter = new SimpleCursorAdapter(this, R.layout.vehiclerow, vehicleCursor, new String[] {"registration"}, new int[] { R.id.vehicleRow});
我想在 vehicleRow TextView 上放置多个值,例如:
Toyota - Corolla
其中丰田和卡罗拉来自数据库的不同字段。
我试过这个:
SimpleCursorAdapter vehicleAdapter = new SimpleCursorAdapter(this, R.layout.vehiclerow, vehicleCursor, new String[] {"make", "model"}, new int[] { R.id.vehicleRow});
但它不起作用。
可能是什么问题呢?
问候