-2

I want to use a webview insode a scrollView .I know it've been asked before and I've tested 3 different classes to do so , buy none of them worked .

How can I use webview inside scrollView ?

thanks

mohamad bagheri
  • 493
  • 1
  • 9
  • 24

1 Answers1

3

You have to set

webView.setOnTouchListener(new OnTouchListener() {
    // Setting on Touch Listener for handling the touch inside ScrollView
    @Override
    public boolean onTouch(View v, MotionEvent event) {
        // Disallow the touch request for parent scroll on touch of child view
        v.getParent().requestDisallowInterceptTouchEvent(true);
        return false;
    }
});
fluidsonic
  • 4,484
  • 2
  • 22
  • 34
Patel Hiren
  • 335
  • 2
  • 11