2015-12-23 54 views
0

我有實施類似的設計 https://github.com/chrisbanes/cheesesquareNestedScrollView + AppBarLayout內容轉到後面

的可摺疊式工具欄與崩潰內部的圖像向下滾動

<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"> 

     <android.support.design.widget.AppBarLayout 
      android:id="@+id/app_bar_layout" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:fitsSystemWindows="true" 
      android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> 

      <android.support.design.widget.CollapsingToolbarLayout 
       android:id="@+id/collapsing_toolbar" 
       android:layout_width="match_parent" 
       android:layout_height="match_parent" 
       android:fitsSystemWindows="true" 
       app:contentScrim="?attr/colorPrimary" 
       app:expandedTitleMarginEnd="64dp" 
       app:expandedTitleMarginStart="48dp" 
       app:layout_scrollFlags="scroll|exitUntilCollapsed"> 

       <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android" 
        android:id="@+id/pager" 
        android:layout_width="match_parent" 
        android:layout_height="@dimen/picture_heigth" 
        android:fitsSystemWindows="true" 
        app:layout_collapseMode="parallax"> 

       </android.support.v4.view.ViewPager> 


       <android.support.v7.widget.Toolbar 
        android:id="@+id/toolbar" 
        android:layout_width="match_parent" 
        android:layout_height="?attr/actionBarSize" 
        app:layout_collapseMode="pin" 
        app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> 


      </android.support.design.widget.CollapsingToolbarLayout> 
     </android.support.design.widget.AppBarLayout> 

     <android.support.v4.widget.NestedScrollView 
      android:id="@+id/scroll_view" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent"   
      android:foreground="?android:windowContentOverlay" 

      app:layout_behavior="@string/appbar_scrolling_view_behavior"> 
      LinearLayout 
      android:id="@+id/root" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:orientation="vertical"> 

它的工作原理巨星的時候,但並非總是如此.. 。例如,在線性佈局中,我有一個視圖,在我的休息請求完成後被填充。這有助於推動Viewpager的內容,當我再次向下滾動時,所有事情都會進入正確的位置。

我在一些SO線程上看到,通過在NestedSCrollVew上設置「fill_vertical」它正在解決一些問題。它實際上,內容不落後,但滾動視圖的底部是CUT ... 通過把一些底部邊距它修復了問題,但它是動態的,我不知道提前放置什麼邊距...

回答

4

添加到您的LinearLayout重點屬性:

 android:focusable="true" 
     android:focusableInTouchMode="true" 
+0

不知道哪裏是邏輯,但它的工作原理。 – OMArikan

+0

不知道爲什麼,但這似乎工作。 –

相關問題