更改Listview项目背景

时间:2014-08-13 10:48:21

标签: android listview

作为ListView的适配器,我使用自定义适配器。在Adapter的getView方法中,我试图使用setBackgroundDrawable更改listitem的背景图像。

public View getView(int position, View convertView, ViewGroup parent) {
        View vi = convertView;
        CurrencyModel currency = new CurrencyModel();
        currency = currencyList.get(position);

        if (convertView == null) {
            vi = inflater.inflate(R.layout.listitem_currency, null);
        }

        TextView tvSymbol = (TextView) vi.findViewById(R.id.tvSymbol);
        TextView tvSize = (TextView) vi.findViewById(R.id.tvSize);
        TextView tvName = (TextView) vi.findViewById(R.id.tvName);
        TextView tvRate = (TextView) vi.findViewById(R.id.tvRate);

        tvSymbol.setText(currency.getSymbol());
        tvSize.setText(currency.getSize());
        tvName.setText(currency.getName());
        tvRate.setText(currency.getRate());

        if (currency.getSymbol().equals("AUD")) {
            vi.setBackgroundDrawable(context.getResources().getDrawable(
                    R.drawable.bg_exch_high_cell));
        }

        return vi;
    }

活动开始时,一切正常 - 带有AUD的listitem有不同的背景。当我滚动列表视图时,所有的神秘感都开始了 - 其他列表项目也得到了#34;特别的"背景。滚动越多,列表项就越多。我不知道为什么会这样。如何解决这个问题呢?

enter image description here

2 个答案:

答案 0 :(得分:1)

if (currency.getSymbol().equals("AUD")) {
    vi.setBackgroundDrawable(context.getResources().getDrawable(
                R.drawable.bg_exch_high_cell));
}
else {//restore default background}

这是因为listview重用了单元格视图。您应该恢复其他项目的默认背景。

More about list view performance

答案 1 :(得分:1)

TextView tvSymbol = (TextView) vi.findViewById(R.id.tvSymbol);

在此行之前添加您放入项目的默认背景。你的代码中为什么会发生的原因是android尝试使用已经创建的视图(vi)。因为如果它被分配了bg_exch_high_cell,它将保留它。所以在开始时重置它。

vi.setBackgroundDrawable(context.getResources().getDrawable(
                //default background drawable here ));
TextView tvSymbol = (TextView) vi.findViewById(R.id.tvSymbol);