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);
link|improve this question

78% accept rate
feedback

3 Answers

up vote 2 down vote accepted

According to ExpandableListView's source code, the only way to move an indicator to the right side is to change its bounds using ExpandableListView.setIndicatorBounds() method. You can calculate bound in onSizeChanged() method, for example.

link|improve this answer
Thanks Pixie. I tried newListView.setIndicatorBounds(newListView.getWidth()-40, newListView.getWidth()); but the indicator disappears. When I get the value of getWidth(), it returns zero. Does that mean that I have to extend the expandable list view just to override the onSizeChanged()? Thanks. – iamthe.exception Apr 27 '11 at 7:39
1  
By the way, I tried setting a static value newListView.setIndicatorBounds(140, 150); and it works. But how could I get the width dynamically? Thanks. – iamthe.exception Apr 27 '11 at 7:46
I think its width is zero because it haven't measured it yet. So, the most obvious way to get its width and react on size changes is to override onSizeChanged() method. Maybe, there're simpler ways to do that, but I don't know any. – Pixie Apr 27 '11 at 7:51
feedback

the best way to do this is

`ViewTreeObserver vto = mExpandableListView.getViewTreeObserver();

    vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
        @Override
        public void onGlobalLayout() {
    mExpandableListView.setIndicatorBounds(mExpandableListView.getRight()- 40, mExpandableListView.getWidth());

        }
    });`

or this

@Override public void onWindowFocusChanged(boolean hasFocus) { super.onWindowFocusChanged(hasFocus); mExpandableListView.setIndicatorBounds(mExpandableListView.getRight()- 40, mExpandableListView.getWidth()); } will move that indicator to right of list view even on device and on tab also.

or you can do this in a postdelayed thread.

`(new Handler()).post(new Runnable() {

        @Override
        public void run() {
    mExpandableListView.setIndicatorBounds(mExpandableListView.getRight()- 40, mExpandableListView.getWidth());
        }
    });`
link|improve this answer
feedback

Here is the code for changing position of the group indicator to right side. http://android-adda.blogspot.com/2011/06/custom-expandable-listview.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.