我正在使用 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);
}**