我正在尝试在我的项目中为我的ListView添加图像按钮到我的自定义SimpleCursorAdapter
,但我有一个问题,重复和一个字段的完全随机值。
这是它的代码:
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
。
答案 0 :(得分:2)
单击时,OnClickListener
从光标获取id,而不是在构造时。同时,列表视图在滚动时改变光标位置。
我想如果仔细观察,你会发现Toast显示的是加载到视图中的最后一项的ID,而不是包含你点击的按钮的项目。
您可以通过在构造单击侦听器时获取id来解决此问题,如下所示:
delimageButton.setOnClickListener(new OnClickListener() {
private int id = c.getInt(c.getColumnIndex(MyDBAdapter.KEY_ID));
@Override
public void onClick(View arg0) {
Toast.makeText(t,
"Delete ID: " + id, Toast.LENGTH_SHORT).show();
}
});