首次启动片段时遇到问题。似乎CoordinatorLayout为NestedScrollView添加了一个负余量,它等于CollapsingToolbarLayout在折叠状态下的高度(我通过改变高度的值来测试它)。因此,生活在NestedScrollView中的RecyclerView无法向上滚动以显示其底部项目。
在SO上有一些类似的问题(例如this,this和this),但它们并没有提供适合我的解决方案,而且,他们不会对可能导致问题的原因作出任何解释。
一个有趣的注意事项是,如果我旋转,或关闭屏幕并打开屏幕,它将重建布局,并且它会正确显示。此外,如果我点击一个项目它会触发一些东西,然后我就可以滚动那些隐藏的项目。作为一种解决方法,调用一个手动正确重建布局的函数会很好,但我没弄清楚它是什么(看看我下面尝试做了什么)
我试图做的事情:
将底边距等于工具栏的高度添加到NestedScrollView。虽然它在首次发布时有所帮助,但是在我点击某个项目或旋转屏幕后,额外的边距会将视图从屏幕底部向上推。
调试时我的代码中找不到任何问题。
调用getView.invalidate()也无济于事。
有人可以帮我找出导致问题的原因吗?
fragment_player.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="ru.orgin.glagol.MainActivity">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
android:stateListAnimator="@animator/appbar_always_elevated">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:titleEnabled="false">
<include layout="@layout/player_view"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="@dimen/player_toolbar_height"
app:layout_collapseMode="none"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.NestedScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_behavior="@string/appbar_scrolling_view_behavior" >
<ViewAnimator
android:id="@+id/viewAnimator"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inAnimation="@android:anim/fade_in"
android:outAnimation="@android:anim/fade_out">
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="64dp"
android:layout_gravity="center"
style="?android:attr/progressBarStyle"/>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:nestedScrollingEnabled="false"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<TextView
android:layout_width="match_parent"
android:layout_height="64dp"
android:gravity="center"
android:layout_gravity="center"
android:text="@string/empty_history_books" />
<TextView
android:layout_width="match_parent"
android:layout_height="64dp"
android:gravity="center"
android:layout_gravity="center"
android:text="@string/error_loading_data" />
</ViewAnimator>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
更新
仍然不知道原因,但似乎将minHeight
属性添加到CollapsingToolbarLayout
就行了。
答案 0 :(得分:1)
添加minHeight
属性会阻止CollapsingToolbarLayout出现意外行为:
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay"
android:stateListAnimator="@animator/appbar_always_elevated">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/toolbarLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:minHeight="@dimen/player_toolbar_height"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:titleEnabled="false">
<include layout="@layout/player_view"/>
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="@dimen/player_toolbar_height"
app:layout_collapseMode="none"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>