我正在使用NestedScrollWebView
(受NestedScrollView
影响很大),这解决了许多与使用WebView
相关联的known issues CoordinatorLayout
。
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="enterAlways|scroll|snap">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:titleTextAppearance="@style/TextAppearance.AppCompat.Subhead"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_gravity="bottom"
android:visibility="gone"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"/>
</FrameLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeRefreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<com.example.app.widget.NestedScrollWebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.v4.widget.SwipeRefreshLayout>
</android.support.design.widget.CoordinatorLayout>
NestedScrollWebView
适用于AppBarLayout
和enterAlways|scroll|snap
滚动标记,但与SwipeRefreshLayout
不太一样。
我从NestedScrollWebView
setOverScrollMode(WebView.OVER_SCROLL_NEVER);
确保视图不会显示在滚动指示符上。我希望覆盖滚动指示符,但即使启用了过度滚动,也不会出现以下情况。
根据我的理解,SwipeRefreshLayout
应该拦截导致刷新指示符被拖动的任何触摸事件(基于其onInterceptTouchEvent()
的实现)。 SwipeRefreshLayout
也拒绝任何已启用嵌套滚动的子项requestDisallowInterceptTouchEvent()
;这对于NestedScrollWebView
是正确的。因此,应在following manner:
如果从
onInterceptTouchEvent()
返回true,那么子视图就是这样 以前处理触摸事件的人会收到ACTION_CANCEL
,和 从那一点开始的事件被发送给父母 通常处理的onTouchEvent()
方法。
相反,我看到的行为是SwipeRefreshLayout
会对NestedScrollWebView
的触摸事件进行监视,但它实际上从未拦截它们。事实证明,NestedScrollWebView
永远不会收到ACTION_CANCEL
触摸事件,并且即使拖出SwipeRefreshLayout
指标,它也会继续接收后续事件。
以下屏幕截图中对此进行了演示;它显示SwipeRefreshLayout
的指示符以及同时显示的WebView
的滚动指示符。
我无法弄清楚为什么会这样。正如我之前提到的,SwipeRefreshLayout
应该适用于任何已启用嵌套滚动的视图,但由于某种原因,它在这种情况下不起作用。可能是什么问题?
我认为这与NestedScrollWebView
处理dispatchNestedPre...
方法的方式以及它总是将整个MotionEvent
传递给super.onTouchEvent()
方法的事实有关。根据{{3}}:
嵌套的预滚动事件是嵌套滚动事件的触摸 拦截是触摸。
dispatchNestedPreScroll
提供了机会 对于嵌套滚动操作中的父视图来消耗一些或 子视图消耗它之前的所有滚动操作。
现在我必须弄清楚如何重新设计NestedScrollWebView
来正确处理这些方法。
答案 0 :(得分:0)
希望您将从新发布的界面中获得一些解决方案:
NestedScrollingChild
界面:
NestedScrollingParent
界面:
谢谢。