Webview不会在ViewPager中垂直滚动

时间:2016-02-22 13:06:12

标签: android webview android-pageradapter

我们正在尝试使用PagerAdapter将html数据加载到viewpager中的webview中。因此,viewpager中有多个带webview的页面。所有带webview的页面都可以完美地加载数据但是,只有第一个webview垂直滚动。其他网页浏览不能垂直滚动。 请帮助我们解决这个问题。

1 个答案:

答案 0 :(得分:2)

我确实遇到了这个问题。我的解决方案是更改库appcompat并支持降级版本。我目前使用这个:

compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:support-v4:23.0.1'
compile 'com.android.support:design:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'

而不是阻止我的网页浏览滚动的23.1.0。