android-如何在scrollView中使用webView

时间:2015-05-22 08:29:12

标签: android android-webview android-scrollview

我想使用webview insode一个scrollView。我知道它之前已经被问过,我已经测试了3个不同的类,但没有一个可以工作。

如何在scrollView中使用webview?

谢谢

1 个答案:

答案 0 :(得分:2)

你必须设置

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