Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 DrawerLayout 的末端面板中有一个 SeekBar
问题是我们不能在不关闭右面板的情况下滑动搜索栏。
如果试图通过覆盖 DrawerLayout 的 onTouchEvent 和 closeDrawer 方法来播放但没有成功
找到了 :)
mSeekBar.setOnTouchListener(new OnTouchListener() { @Override public boolean onTouch(View v, MotionEvent event) { mProgressBar.getParent().requestDisallowInterceptTouchEvent(true); return false; } });