我创建了一个基于Chris Banes'Cheesesquare演示的Android应用。我没有在ViewPager内部的一个片段上使用RecyclerViews,而是在其中包含一些TextView和一个带有一些可滚动文本的NestedScrollView。当我滚动片段上的内容时只有RecyclerView,工具栏会正确折叠。在带有TextView的片段上,工具栏不会折叠。如果我从片段中删除TextView,那么我只有一个NestedScrollView,然后滚动片段将正确折叠工具栏。
这是CoordinatorLayout:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:layout_scrollFlags="scroll|enterAlways" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
以下是滚动折叠不起作用的片段的布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:id="@+id/header"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Header"
android:layout_margin="15dp"/>
<View android:layout_below="@id/header"
android:id="@+id/header_bar"
android:layout_width="fill_parent"
android:layout_height="1dip"
android:background="#000000"/>
<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_below="@id/header_bar"
>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. ..."/>
</android.support.v4.widget.NestedScrollView>
我花了一些时间对此进行故障排除,看起来问题在于AppBarLayout上的布局行为。该课程有以下方法:
public boolean onStartNestedScroll(CoordinatorLayout coordinatorLayout, AppBarLayout child, View directTargetChild, View target, int nestedScrollAxes) {
boolean started = (nestedScrollAxes & 2) != 0 && child.hasScrollableChildren() && coordinatorLayout.getHeight() - target.getHeight() <= child.getHeight();
if(started && this.mAnimator != null) {
this.mAnimator.cancel();
}
return started;
}
对于我的NestedScrollView上的滚动,此方法返回false。原因是滚动视图的高度必须大于或等于coordinatorLayout的高度 - AppBarLayout的高度。如果滚动视图没有兄弟,那么情况就是这样,但是如果你向布局添加任何其他视图,那么它会评估false并且停用滚动行为。
我通过返回true来解决这个问题,似乎解决了这个问题。我想知道是否有其他人遇到过这个并且有更好的解决方案。