As regards to expandable list view, the group icon indicator is positioned to the left side, can I move the indicator and positioned it to the right? Thanks.
EDITED: Since I don't want to extend the view, I got this workaround of getting the width dynamically. Just sharing my solution.
Display newDisplay = getWindowManager().getDefaultDisplay();
int width = newDisplay.getWidth();
newListView.setIndicatorBounds(width-50, width);
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…