SeekBar inside DrawerLayout

I have a SeekBar inside the DrawerLayout final panel

The problem is that we cannot scroll the Seekbar without closing the right panel.

If you tried to play by overriding the onTouchEvent and closeDrawer DrawerLayout methods without success

+4
source share
1 answer

Found :)

mSeekBar.setOnTouchListener(new OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { mProgressBar.getParent().requestDisallowInterceptTouchEvent(true); return false; } }); 
+10
source

Source: https://habr.com/ru/post/1502834/


All Articles