android 可扩展列表视图默认指示器图像

android Expandable listview default indicator image

我将在我的适配器中使用此代码隐藏组指示器

if ( getChildrenCount( groupPosition ) == 0 ) {
            holder. Indicator.setVisibility( View.INVISIBLE );
        } else {
            holder. Indicator.setVisibility( View.VISIBLE );
            holder. Indicator.setImageResource( isExpanded ? R.drawable.list_group_expanded : R.drawable.list_group_closed );
        }

但我想使用默认的可扩展列表项图像而不是 list_group_expandedlist_group_closed 如何找到指示器的默认图标?有人可以帮助我吗?谢谢

你可以试试这个:

holder. Indicator.setImageResource( isExpanded ? android.R.drawable.arrow_up_float : android.R.drawable.arrow_down_float );