android可扩展listview默认指标图像

时间:2015-02-28 16:37:27

标签: android listview expandablelistview

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

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_expandedlist_group_closed如何找到指标的默认图标?有人可以帮助我吗?谢谢

1 个答案:

答案 0 :(得分:3)

你可以试试这个:

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