扩展时如何在ExpandableListView中更改groupItem的颜色? 并且在未展开时变为白色?
答案 0 :(得分:0)
在可扩展列表适配器中,您有一个名为getGroupView()的方法,通过使用该方法,您可以执行此操作。
public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
ViewGroup parent) {
//Here you can initialize your view
if(isExpanded){
// set color for expanded item.
}else{
// set color for non expanded item.
}
}