Expandable list view move group icon indicator to right

前端 未结 16 2432
栀梦
栀梦 2020-12-04 08:56

As regards to expandable list view, the group icon indicator is positioned to the left side, can I move the indicator and positioned it to the right? Thanks.

16条回答
  •  伪装坚强ぢ
    2020-12-04 09:58

    First you have to remove group indicator from your xml

    
    

    then do as follows in your custom adapter

    public View getGroupView(int groupPosition, boolean isExpanded,
        View convertView, ViewGroup parent) {
    
    if (isExpanded) {
        groupHolder.img.setImageResource(R.drawable.group_down);
    } else {
        groupHolder.img.setImageResource(R.drawable.group_up);
    }}
    

提交回复
热议问题