1

我正在使用 gridview 来显示 7colums 和 96rows。当我单击特定单元格时,它应该以不同的图像突出显示。该单元格用差异图像突出显示,但是当我滚动 gridview 时,多个单元格用该图像突出显示,而不是单个选定的单元格。这是我的适配器类的一段代码。

public View getView(int position, View convertView, ViewGroup parent) {
        TextView txtgridcell = null;
        if (convertView == null) {
            convertView = LayoutInflater.from(context).inflate(
                    R.layout.gridview_row, null);
        }
        txtgridcell = (TextView) convertView.findViewById(R.id.txtgridcell);
        **if ((rangeList != null && rangeList.size() > 0)
                && (rangeList.contains(position))) {
            txtgridcell
                    .setBackgroundResource(R.drawable.item_background_focused);
        }**
4

1 回答 1

2

解决了

if ((rangeList != null && rangeList.size() > 0)
                && (rangeList.contains(position))) {
            txtgridcell
                    .setBackgroundResource(R.drawable.item_background_focused);
        } else {
            txtgridcell.setBackgroundResource(R.drawable.item_background);
        }

添加其他条件解决了我的问题。

于 2012-09-17T05:40:12.820 回答