【发布时间】:2015-05-22 08:29:11
【问题描述】:
我想在 scrollView 中使用 webview。我知道之前有人问过这个问题,并且我已经测试了 3 个不同的类来这样做,但没有一个有效。
如何在 scrollView 中使用 webview ?
谢谢
【问题讨论】:
-
请粘贴一些代码!
标签: android android-webview android-scrollview
我想在 scrollView 中使用 webview。我知道之前有人问过这个问题,并且我已经测试了 3 个不同的类来这样做,但没有一个有效。
如何在 scrollView 中使用 webview ?
谢谢
【问题讨论】:
标签: android android-webview android-scrollview
你必须设置
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;
}
});
【讨论】: