Android ListView排除突出显示的部分标题

时间:2015-09-30 05:17:38

标签: android android-listview sticky sectionheader

我最近从github实现了StickyListHeadersListview库。然后我使用MultiChoiceModeListener选择项目,然后复制或删除所选元素,如下所示

我不希望突出显示节标题(日期字段)。有没有办法禁用此行为。

这个问题起源于我最后一个未回答的问题。请参阅link以获取自定义阵列适配器代码

enter image description here

1 个答案:

答案 0 :(得分:1)

  

使用更改视图的背景颜色   View.setBackgroundColor();方法。

getHeaderView()方法中添加此行

  

convertView.setBackgroundColor(你的颜色)

  @Override
    public View getHeaderView(int position, View convertView, ViewGroup parent) {
        HeaderViewHolder holder;

        if (convertView == null) {
           holder = new HeaderViewHolder();
           convertView = mInflater.inflate(R.layout.date_separator, parent, false);

            convertView.setBackgroundColor(your color);// change here

         }                

         return convertView;
    }