3

我正在尝试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

4

1 回答 1

2

OnClickListener在单击光标时从光标获取 id,而不是在构造光标时获取 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();
    }
});
于 2013-01-05T02:09:02.247 回答