我有一个名为“Nodes”的SQLite表,其中包含一组所有节点(每个节点都有多个属性)。
在一个活动中,我使用SimpleCursorAdapter的扩展来显示Nodes表的子集,基于SQL查询,将Cursor传递给结果表(来自查询)。
{id_long, name_string, description_string, nodetype_enum_toString...}
1, "home", "home_desc", "cool"
2, "item1", "item1_desc", "warm"
3, "item2", "item2_desc", "hot"
4, "item3", "item3_desc", "warm"
5, "item4", "item4_desc", "hot"
我想修改ListActivity中的每个列表项,以便根据项目是冷,热还是热来显示不同的颜色。我有一个小的(空的)视图,但它总是默认为白色('else'部分)。
public View getView(int position, View convertView, ViewGroup parent) {
convertView = super.getView(position, convertView, parent);
if (convertView == null) convertView = View.inflate(mContext, R.layout.viewstack_item, null);
View nodetype_view = (View) convertView.findViewById(R.id.nodetype_view);
mGenCursor_cur = mDataHelper_db.getAll();
mGenCursor_cur.moveToPosition(position);
Log.i("test", "node type key " + mGenCursor_cur.getColumnIndex(DataHelper.NODES_TYPE_KEY));
String type_nt = mGenCursor_cur.getString(mGenCursor_cur.getColumnIndex(DataHelper.NODES_TYPE_KEY));
String name_str = mGenCursor_cur.getString(mGenCursor_cur.getColumnIndex(DataHelper.NODES_NAME_KEY));
Log.i("getView", title_str + "typeis " + type_nt + " at position " + position);
if (prio_np.equals(NodePrio.HIGH.toString())) {
Log.i("prio_np", "high red");
prioView_view.setBackgroundColor(Color.RED);
} else if (prio_np.equals(NodePrio.NORMAL.toString())) {
Log.i("prio_np", "norm magenta");
prioView_view.setBackgroundColor(Color.MAGENTA);
} else {
Log.i("prio_np", "else (low) white");
prioView_view.setBackgroundColor(Color.WHITE);
}
mGenCursor_cur.close();
bindView(convertView, mContext, getCursor());
return(convertView);
}
我的问题是,当传递给SimpleListAdapter的游标将包含我想要的子集中相应节点的_ID(我假设)时, getView 位置参数>是子集的本地,因此我无法与Nodes表交叉引用它。我错过了一些简单的技巧吗?
标记答案的评论4帮我解决了这个问题: 将传递给SimpleCursorAdapter的游标存储为成员变量,然后使用move to position和getLong:
mCursor_cur.moveToPosition(position);
long id = mCursor_cur.getLong(0);
其中 position 是getView()方法中的本地参数,0用于getLong,因为db_id是传递给SimpleCursorAdapter的游标中的第一列