Animated ExpandableListView in Scrollview

后端 未结 1 1184
野性不改
野性不改 2020-12-20 09:59

I am trying to implement Animated ExpandableListview in ScrollView layout. But when I expand some category then Scroll is not working. If any method for this then Please hel

相关标签:
1条回答
  • 2020-12-20 10:58

    use this method hope it may helps you out..!

    left_drawer.setOnTouchListener(new View.OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                v.getParent().requestDisallowInterceptTouchEvent(true);
                return false;
            }
        });
    
    0 讨论(0)
提交回复
热议问题