我正在尝试在SwipeRefreshLayout中实现 Webiew ,但不知何故 SwipeRefreshLayout 阻止我的网页浏览向上滚动。我搜索了整个stackoverflow,但在Android 6.0上找不到任何有用的解决方案
NestedScrollView无效 任何自定义SwipeRefreshLayout或WebView都无法正常工作
这是我的XML
请帮忙
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeContainer"
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true" />
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>