我正在尝试SimpleCursorAdapter
在我的项目中为我的 ListView 的自定义添加图像按钮,但我遇到了一个问题,即一个字段的重复值和完全随机值。
这是它的代码:
public class MyCursorAdapter extends SimpleCursorAdapter {
public MyCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) {
super(context, layout, c, from, to);
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
super.bindView(view, context, cursor);
final Context t = context;
final Cursor c = cursor;
ImageButton delimageButton = (ImageButton)view.findViewById(R.id.deletebutton);
delimageButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
Toast.makeText(t,
"Delete ID: " + c.getInt(c.getColumnIndex(MyDBAdapter.KEY_ID)), Toast.LENGTH_SHORT).show();
}
});
if(cursor.getLong(cursor.getColumnIndex(MyDBAdapter.KEY_OWNID))>0)
{
TextView own = (TextView)view.findViewById(R.id.ownInfo);
own.setText("OWN");
}
else
{
TextView own = (TextView)view.findViewById(R.id.ownInfo);
own.setText("");
}
}
}
现在,当我按下 delimageButton 时,我得到的是ListView
当前视图中的一条记录(行)的一些随机 ID(我可以看到它,但它不是正确的 ID),例如,如果您可以在屏幕上看到 5 行,并且您按下其中一个按钮,您将获得另一行的 id(其中 5 个),但不是您按下的这一行(在大多数情况下)。我记得这个自己的 TextView 有一些技巧,但我不明白它是如何放在这里的。
那么,你能告诉我如何让它显示正确的ID吗?
我会很高兴得到帮助。
编辑
有一个完整的代码负责设置 ListView 以及调用MyCursorAdapter
:
private void refreshList() {
mySQLiteAdapter = new MyDBAdapter(this);
mySQLiteAdapter.open();
String[] columns = { MyDBAdapter.KEY_TITLE, MyDBAdapter.KEY_GENRE,
MyDBAdapter.KEY_OWNID, MyDBAdapter.KEY_ID };
Cursor contentRead = mySQLiteAdapter.getAllEntries(false, columns,
null, null, null, null, MyDBAdapter.KEY_TITLE, null);
startManagingCursor(contentRead);
Log.d(TAG, Integer.toString(contentRead.getCount()));
MyCursorAdapter adapterCursor = new MyCursorAdapter(this,
R.layout.my_row, contentRead, columns, new int[] {
R.id.rowTitle, R.id.detail });
this.setListAdapter(adapterCursor);
mySQLiteAdapter.close();
}
为了澄清,活动是ListActivity
。