我正在尝试使用Android WebView开发混合应用程序,该应用程序在移动webview上加载网站。
在FrameLayout中添加WebView对象运行时。
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeToRefresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:id="@+id/webViewContainer"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.widget.SwipeRefreshLayout>
当页面位于顶部时,SwipeRefreshLayout
启用/禁用,添加TreeObserver
以便WebView
滚动检测
odooWebView.getViewTreeObserver().addOnScrollChangedListener(new ViewTreeObserver.OnScrollChangedListener() {
@Override
public void onScrollChanged() {
swipeRefreshLayout.setEnabled(odooWebView.getScrollY() == 0);
}
});
它适用于所有具有可滚动内容的页面。但内部垂直滚动的页面卡在刷卡刷新
与应用和Chrome浏览器进行视频比较:
应用:https://drive.google.com/file/d/0B7bMj_vvgmpveEV2MkNYc0xOY3c/view?usp=sharing Chrome应用:https://drive.google.com/file/d/0B7bMj_vvgmpvUktYQVpONXl1ekk/view?usp=sharing