Expandable list view move group icon indicator to right

前端 未结 16 2477
栀梦
栀梦 2020-12-04 08:56

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.

16条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-04 09:56

    if it is in Fragment - onViewCreated()

        ViewTreeObserver vto = Expnlist.getViewTreeObserver();
        vto.addOnGlobalLayoutListener(new      ViewTreeObserver.OnGlobalLayoutListener() {
            @Override
            public void onGlobalLayout() {
                Expnlist.setIndicatorBounds(Expnlist.getMeasuredWidth() - 80, Expnlist.getMeasuredWidth());
            }
        });
    

    its works for me!. Cheers!

提交回复
热议问题