我正在尝试使用and实现滚动技术(在同级子视图中向下滚动时Toolbar
隐藏) 。Toolbar
CoordinatorLayout
AppBarLayout
我正在使用Crosswalk的XWalkView(它是一个功能类似于 WebView 的视图)。
使用常规WebView(在 a 内NestedScrollView
)时,我可以达到想要的效果:
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:id="@+id/webViewOrig"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
但是,当以XWalkView
相同的方式使用时,我无法让它工作。使用以下 XML 布局后:
<android.support.v4.widget.NestedScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport = "true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<org.xwalk.core.XWalkView
android:id="@+id/webViewCross"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</android.support.v4.widget.NestedScrollView>
视图甚至没有出现。
删除以下行时
app:layout_behavior="@string/appbar_scrolling_view_behavior"
XWalkView
至少显示在整个屏幕上和工具栏的顶部。
我应该怎么做才能让它工作?由于它是开源的,我应该能够使其工作......我怀疑它要么是子类XWalkView
并实现一些接口( ?),要么通过子类化或NestedScrollingChild
创建自定义行为。CoordinatorLayout.Behavior
AppBarLayout.ScrollingViewBehavior
有任何想法吗?
顺便说一句XWalkView
,在内部使用SurfaceView或TextureView来呈现 Web 内容。