Image icon in expandable list view in android

前端 未结 4 824
谎友^
谎友^ 2021-02-06 10:37

I want to add an image icon in expandable list view .I have seen the tutorial they have added only in child elements .Is there any other way to add image icon in parent Any hel

4条回答
  •  野的像风
    2021-02-06 10:59

    ok

       public View getGroupView(int groupPosition, boolean isExpanded, View convertView,
                ViewGroup parent) {
    
        if(getChildrenCount(groupPosition)==0)
        {
              // how do i hide the group indicator ?
    
        }
    

    So, how can modify the group indicator for empty groups ?

提交回复
热议问题