0

我有 CustomAdapter 扩展 ArrayAdapter,在其中我在 LinearLayout 中设置了一些视图 - 一行,像这样(适配器):

public View getView(int position, View convertView, ViewGroup parent) {
    . . .
    ImageView statePic = (ImageView) view.findViewById(R.id.state);
    statePic.setImageResource(R.drawable.light_green);
    return view;
}

这工作正常。但现在我想在我的列表中的项目上绑定一个上下文菜单,所以我有这样的东西(主要活动 - listActivity):

public boolean onContextItemSelected(MenuItem item) {
    AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();

    switch(item.getItemId()){
    case CM_START:
        View view = getListAdapter().getView(info.position, null, null);
        ImageView statePic = (ImageView)view.findViewById(R.id.state);
        // I'm sure this view is the right one

        statePic.setImageResource(R.drawable.light_grey);
        view.invalidate();
        view.refreshDrawableState();
        return true;

    case CM_STOP:
        return true;
    }
    return super.onContextItemSelected(item);
}

我想用这个片段实现的是更改该项目中的图像,但这不起作用(视图没有用新值刷新)。我怎样才能做到这一点?

4

1 回答 1

0

您应该使用 AdapterContextMenuInfo 类的 targetView 属性:

...
ImageView statePic = (ImageView) info.targetView.findViewById(R.id.state);
...
于 2012-07-02T22:02:35.483 回答