Android + ListView背景在滚动时设置背景?

时间:2011-09-29 01:44:14

标签: android

我有一个通过ArrayAdapter填充的ListView。在适配器中,我根据条件设置视图背景颜色。它可以工作,但滚动剩余的行时采用这种颜色。这是一些代码:

class DateAdapter extends ArrayAdapter<DateVO> {
    private ArrayList<DateVO> items;
    public ViewGroup listViewItem;

    //constructor
    public DateAdapter(Context context, int textViewResourceId, ArrayList<DateVO> items) {
        super(context, textViewResourceId, items);
        this.items = items;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        try {
            if (view == null) {
                LayoutInflater vi = (LayoutInflater)getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
                convertView = vi.inflate(R.layout.row, null);
            }

            final DateVO dateItem = items.get(position);

            if (dateItem != null) {

                //is this my issue here? does position change while scrolling?
                if(items.get(position).getField().equals("home")){
                    view.setBackgroundResource(R.drawable.list_bg_home);
                }
                ...
            }

        }catch (Exception e) {
            Log.i(ArrayAdapter.class.toString(), e.getMessage());
        }

        return view;
    }
} 

1 个答案:

答案 0 :(得分:7)

这是ListView的默认行为。可以通过将cacheColorHint设置为transparent来覆盖它。 只需添加,

android:cacheColorHint="#00000000"

在你的xml文件中。

有关详情,请参阅ListView Backgrounds文章。 这是一段摘录:

  

要解决此问题,您所要做的就是禁用缓存颜色提示优化,如果使用非纯色背景,或将提示设置为适当的纯色值。您可以使用android:cacheColorHint属性从代码(请参阅setCacheColorHint(int))或最好从XML执行此操作。要禁用优化,只需使用透明色#00000000。以下屏幕截图显示了在XML布局文件中设置android:cacheColorHint =“#00000000”的列表

编辑:作为convertView传递的视图本质上是一个视图,它是列表视图的一部分,但不再可见(由于滚动)。因此它实际上是您创建的视图,可能是您已设置自定义背景的视图。要解决此问题,请确保在不满足条件时重置背景。像这样:

if(condition_satisfied) {
    //set custom background for view
}
else {
    //set default background for view
    convertView.setBackgroundResource(android.R.drawable.list_selector_background);
}

基本上,如果您的条件不满意,您必须撤消您满足条件时正在执行的任何自定义操作,因为您可能已收到旧的自定义视图convertView。 这应该可以解决你的问题。