简体   繁体   English

CollapsingToolbarLayout 内的 ViewPager

[英]ViewPager inside CollapsingToolbarLayout

I have a collapsingToolbarLayout in my app.我的应用程序中有一个collapsingToolbarLayout I put a ViewPager in top of my layout.I want to my toolbar be disappear in expended state and is pin in the collapsing state.我在ViewPager顶部放置了一个ViewPager 。我希望我的工具栏在展开状态下消失,并在折叠状态下固定。 I write this code for my layout, but when I scroll layout toolbar don't appear and rather than the part of my ViewPager appear.我为我的布局编写了这段代码,但是当我滚动布局时, toolbar不会出现,而不是我的ViewPager的一部分出现。

 <?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    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_height="192dp"
        android:layout_width="match_parent"
        android:fitsSystemWindows="true">

        <android.support.design.widget.CollapsingToolbarLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:contentScrim="@android:color/transparent"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            app:layout_scrollInterpolator="@android:anim/decelerate_interpolator"
            app:toolbarId="@+id/toolbar"
            android:fitsSystemWindows="true">

            <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="200dp"
            >

            <android.support.v4.view.ViewPager
            android:id="@+id/slider"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_collapseMode="parallax"
            ></android.support.v4.view.ViewPager>

            <me.relex.circleindicator.CircleIndicator
            android:id="@+id/Indicator"
            android:layout_width="match_parent"
            android:layout_height="48dp"
            android:layout_gravity="center"
            android:layout_marginTop="10dp" />
            </FrameLayout>


            <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.v7.widget.Toolbar>
        </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="android.support.design.widget.AppBarLayout$ScrollingViewBehavior">
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <TextView
                android:id="@+id/txtTitleCategory"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/category_title"
                android:layout_alignParentEnd="true"
                android:layout_marginTop="30dp"
                android:layout_marginEnd="20dp"/>
            <android.support.v7.widget.RecyclerView
                android:id="@+id/categoryRecy"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/txtTitleCategory"
                android:layout_margin="20dp"/>
            <TextView
                android:id="@+id/txtTopCourseCat1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="دوره های محبوب"
                android:layout_below="@+id/categoryRecy"
                android:layout_alignParentEnd="true"
                android:layout_marginTop="30dp"
                android:layout_marginEnd="20dp"
                />
            <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="@string/temp"
                android:layout_below="@+id/topCourseCat1Recy"/>
            <android.support.v7.widget.RecyclerView
                android:id="@+id/topCourseCat1Recy"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/txtTopCourseCat1">

            </android.support.v7.widget.RecyclerView>

        </RelativeLayout>
    </android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>

This is screenshot of my app:这是我的应用程序的屏幕截图: 消耗状态 折叠状态

This is screenshot of my expected behavior :这是我预期行为的屏幕截图: 消耗状态 折叠状态

Just change toolbar like this只需像这样更改工具栏

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

Thank you谢谢

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM