Image icon in expandable list view in android

前端 未结 4 777
谎友^
谎友^ 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:56

        indicator=(ImageView)convertView.findViewById(R.id.icon_img);
        if ( getChildrenCount( groupPosition ) == 0 ) {
            indicator.setVisibility( View.INVISIBLE );
        }
        else {
            indicator.setVisibility( View.VISIBLE );
            indicator.setImageResource( isExpanded ? 
           R.drawable.ic_arrow_up : R.drawable.ic_arrow_down );
        }
    

提交回复
热议问题