android-SimpleCursorAdapter-绑定到ListView中的多个项目值

前端之家收集整理的这篇文章主要介绍了android-SimpleCursorAdapter-绑定到ListView中的多个项目值 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有以下代码来使SimpleCursorAdapter实例化以与ListView一起使用.如您所见,我已经传递了R.layout.log_item以显示列表项,并传递了一个值/控件绑定到(TripDate).

SimpleCursorAdapter sca = new SimpleCursorAdapter(this,R.layout.log_item,c,new String[] {DBAdapter.KEY_LOG_TRIPDATE},new int[]{R.id.txtTripDate});

这有效

我目前在布局xml中只有一个小部件,一个用于保存TripDate的TextView.
如何为布局中的其他小部件传递多个绑定参数?因此我还可以显示其他信息.

谢谢
帕特里克@H_403_16@

最佳答案@H_403_16@
SimpleCursorAdapter sca = new SimpleCursorAdapter(this,new String[] {DBAdapter.KEY_LOG_TRIPDATE,DBAdapter.KEY_FOO,DBAdapter.KEY_BAR},new int[]{R.id.txtTripDate,R.id.otherid1,R.id.otherid2});
@H_403_16@

猜你在找的Android相关文章