3

我在AppBarLayout中使用CollapsingToolbarLayout只是因爲它在滾動時的視差效果,所以我需要完全摺疊佈局。滾動後,我的意思是將其高度設置爲零。我將佈局minHeight設置爲0dp,但不起作用,仍然可以看到部分佈局。collapse CollapsingToolbarLayout COMPLETELY

<?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" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true"> 

    <android.support.design.widget.AppBarLayout 
     android:id="@+id/app_bar" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:paddingTop="40dp" 
     android:paddingRight="40dp" 
     android:paddingLeft="40dp" 
     android:background="#e91e63" 
     android:fitsSystemWindows="true" 
     android:minHeight="0dp" 
     android:theme="@style/AppTheme.AppBarOverlay"> 

     <android.support.design.widget.CollapsingToolbarLayout 
      android:id="@+id/collapsing_toolbar_layout" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:minHeight="0dp" 
      android:fitsSystemWindows="true" 
      app:titleEnabled="true" 
      app:layout_scrollFlags="scroll|exitUntilCollapsed"> 
      <ImageView 
        android:id="@+id/index_icon" 
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" 
        android:src="@drawable/suitcase" 
        android:padding="20dp" 
        android:background="@drawable/index_page_icon_bg" 
        android:layout_margin="5dp" 
        app:layout_collapseMode="parallax"/> 

      </LinearLayout> 
      <android.support.v7.widget.Toolbar 
       android:id="@+id/toolbar" 
       android:layout_width="match_parent" 
       android:layout_height="0dp" 
       android:minHeight="0dp" 
       app:popupTheme="@style/ThemeOverlay.AppCompat.Light" 
       app:layout_collapseMode="pin" /> 
     </android.support.design.widget.CollapsingToolbarLayout> 
    </android.support.design.widget.AppBarLayout> 
     <android.support.v4.widget.NestedScrollView 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      app:layout_behavior="@string/appbar_scrolling_view_behavior"> 
     </android.support.v4.widget.NestedScrollView> 

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

what happens which I don't want

一般規則:如果你覺得這是不是一個好Q,申報在評論然後做任何你喜歡的!

+0

這對我有點困惑。你想不顯示工具欄? –

+0

不,只是一個圖像,並滾動它的視差,並完全崩潰它 – Mneckoee

回答

5

像這樣更改AppBarLayout

<android.support.design.widget.AppBarLayout 
    android:id="@+id/app_bar" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:background="#e91e63" 
    android:fitsSystemWindows="true" 
    android:minHeight="0dp" 
    android:theme="@style/AppTheme.AppBarOverlay"> 

一個ImageView會是這樣的。

<LinearLayout 
    android:paddingTop="40dp" 
    android:paddingRight="40dp" 
    android:paddingLeft="40dp" 
    android:scaleType="fitXY" 
    app:layout_collapseMode="parallax" 
    app:layout_collapseParallaxMultiplier="0.4" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"> 

    <ImageView 
     android:id="@+id/index_icon" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:src="@drawable/suitcase" 
     android:padding="20dp" 
     android:background="@drawable/index_page_icon_bg" 
     android:layout_margin="5dp" /> 

</LinearLayout> 

的問題是,你犯了一個填充頂部的AppBarLayout,所以當它崩潰它仍然使40dp填充,這樣的佈局不能充分崩潰。

+0

你已經擊中了頭部的指甲,謝謝 – Mneckoee

+0

你歡迎。 :) 你也可以爲答案upvote。 –