我将在我的适配器中使用此代码隐藏组的指示符
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 );
}
但是我想使用defult可扩展列表项图像而不是list_group_expanded
和list_group_closed
如何找到指标的默认图标?有人可以帮助我吗?谢谢
答案 0 :(得分:3)
你可以试试这个:
holder. Indicator.setImageResource( isExpanded ? android.R.drawable.arrow_up_float : android.R.drawable.arrow_down_float );