7

以下是我的協調器佈局的代碼。它運作良好。褪色整個佈局作爲在摺疊欄佈局中滾動android

<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:fitsSystemWindows="true"> 

    <android.support.design.widget.AppBarLayout 
     android:id="@+id/appbar" 
     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="#f4f4f4" 
      app:expandedTitleMarginEnd="16dp" 
      app:expandedTitleMarginStart="48dp" 
      app:layout_scrollFlags="scroll|exitUntilCollapsed"> 

      <RelativeLayout 
       android:layout_width="match_parent" 
       android:layout_height="match_parent"> 

       <ImageView 
        android:id="@+id/header" 
        android:layout_width="match_parent" 
        android:layout_height="match_parent" 
        android:background="@drawable/echo3" 
        android:fitsSystemWindows="true" 
        android:scaleType="centerCrop" /> 

       <RelativeLayout 
        android:layout_width="match_parent" 
        android:layout_height="40dp" 
        android:layout_alignParentBottom="true" 
        android:background="#fff"> 

        <TextView 
         android:layout_width="wrap_content" 
         android:layout_height="wrap_content" 
         android:layout_centerInParent="true" 
         android:text="Private Albums" 
         android:textColor="#000" 
         android:textSize="22sp" 
         android:textStyle="bold" /> 
       </RelativeLayout> 

      </RelativeLayout> 

      <android.support.v7.widget.Toolbar 
       android:id="@+id/anim_toolbar" 
       android:layout_width="match_parent" 
       android:layout_height="?attr/actionBarSize" 
       app:layout_collapseMode="pin" /> 

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

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

    <android.support.v4.widget.NestedScrollView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_below="@+id/anim_toolbar" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior"> 

     <include layout="@layout/content_profile" /> 


     <!--<fragment--> 
     <!--android:id="@+id/detail"--> 
     <!--android:name="<package>.<fragment_name>"--> 
     <!--android:layout_width="match_parent"--> 
     <!--android:layout_height="match_parent" />--> 

    </android.support.v4.widget.NestedScrollView> 

</android.support.design.widget.CoordinatorLayout> 

我想,我向上滾動,它應該開始褪色掉色整個相對佈局(平均整體倒塌酒吧佈局)。它在某個特定點上會淡出,但我希望它在我向上滾動時淡出。 謝謝,任何幫助表示讚賞。

回答

18

通過將AppBarLayout.OnOffsetChangedListener掛接到AppBarLayout,您可以在向上滾動時減少RelativeLayout的alpha值。以下是我在我的應用程序中使用的代碼。

appBar = (AppBarLayout) findViewById(R.id.app_bar_layout); 
appBar.addOnOffsetChangedListener(new AppBarLayout.OnOffsetChangedListener() { 
     @Override 
     public void onOffsetChanged(AppBarLayout appBarLayout, int verticalOffset) { 

      relativeLayoutToFadeOut.setAlpha(1.0f - Math.abs(verticalOffset/(float) 
        appBarLayout.getTotalScrollRange())); 


     } 
    }); 
+3

這應該被標記爲正確的答案。感謝您分享@ChinLoong –

+0

謝謝,我一直在按照您的實施進行搜索。 –