7

다음은 내 코디네이터 레이아웃 코드입니다. 잘 작동한다.전체 레이아웃을 페이딩하여 축소 된 바 레이아웃으로 스크롤 페이드 앤드 로이드

<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의 알파를 줄일 수 있습니다. 아래는 앱에서 사용한 코드입니다.

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

고맙습니다. –