Collapsing Toolbar. How to adapt custom Layout instead of default ImageView

扶醉桌前 提交于 2019-12-05 16:40:19

You need attach a viewPager above toolbar. Example for ImageView :

<android.support.design.widget.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="240dp"
        android:fitsSystemWindows="true"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        app:elevation="2dp">

<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:elevation="2dp"
            app:collapsedTitleTextAppearance="?attr/autoCompleteTextViewStyle"
            app:layout_scrollFlags="scroll|exitUntilCollapsed">

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

             // put here your content

                <android.support.v7.widget.Toolbar
                        android:id="@+id/anim_toolbar"
                        android:layout_width="match_parent"
                        android:layout_height="?attr/actionBarSize"
                        app:layout_collapseMode="pin"
                        app:elevation="2dp"
                        app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
 </RelativeLayout>
    </android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!