ExpandableListView中groupItem展开时如何改变其颜色?并在不展开时变为白色?
问问题
156 次
1 回答
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.
}
}
于 2012-07-12T09:56:15.043 回答