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
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
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;
}
});