2017-06-20 57 views
0

我在首次啓動片段時遇到了問題。似乎CoordinatorLayout爲NestedScrollView添加了一個負邊距,該邊距等於CollapsingToolbarLayout在摺疊狀態下的高度(我通過更改高度值對其進行了測試)。因此,生活在NestedScrollView中的RecyclerView無法向上滾動以顯示其底部項目中的少量內容。CollapsingToolbarLayout將NestedScrollView向下推進android

上有所以一些類似的問題(如thisthisthis),但它們不提供爲我工作的解決方案,而且,他們不給的是什麼導致問題的任何解釋。

一個有趣的提示是,如果我旋轉或關閉屏幕,它將重建佈局和後綴它將顯示正確。另外,如果我點擊一個項目,它會觸發一些東西,然後我就可以滾動這些隱藏的項目。作爲一種變通方法,將是不錯的調用正確手動重建佈局的功能,但我沒能弄清楚它是什麼(見我試過下面做)

我試圖這樣做:

  • 將與工具欄高度相等的底部邊距添加到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

添加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> 
相關問題