我正在尝试使用Toolbar
和Toolbar
实现滚动CoordinatorLayout
技术(在兄弟的子视图中向下滚动时隐藏AppBarLayout
)。
我正在使用Crosswalk的XWalkView(这是一个像WebView一样的视图)。
当使用常规WebView(在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
?)或通过子类化{{1}创建自定义行为}或CoordinatorLayout.Behavior
。
有什么想法吗?
BTW AppBarLayout.ScrollingViewBehavior
正在内部使用SurfaceView或TextureView来呈现网络内容。