I have found a similar accept answer in: Disable scrolling in webview?
Sample code is:
// disable scroll on touch
webview.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
return (event.getAction() == MotionEvent.ACTION_MOVE);
}
});
But the accept answer don't satisfy my requirements, because the video & audio progress bar's touch move event is also disable(embed in my WebView), so I can't drag the progress bar.
Isn't there another way to solve this? Looking forward to your reply! Thanks!