我在列表视图中有问题..我想在同一列表视图中放置不同的字段这可能吗?
像这样?DBAdapter db = new DBAdapter(.this);
db.open();
List<String> ct = new ArrayList<String>();
ct = db.getAllAccounts();
List<String> sd = new ArrayList<String>();
sd = db.getAllAmount();
Account = (ListView) findViewById(R.id.ListView_addAccount);
Account.setAdapter(new ArrayAdapter<String>(this,R.layout.list_contas_layout,R.id.text1,R.id.text2, ct,sd));
这样的东西可以使用吗? 抱歉我的英文;)
答案 0 :(得分:0)
绝对。看看SimpleCursorAdapter
。我不确定你正在使用什么数据库,但使用Cursor
类对于这类事情来说是很正常的。否则,您将不得不创建自己的自定义适配器。