ViewPager внутри CollapsingToolbarLayout - PullRequest
0 голосов
/ 30 января 2019

У меня есть collapsingToolbarLayout в моем приложении.Я поместил ViewPager в верхней части моего макета. Я хочу, чтобы моя панель инструментов исчезла в расширенном состоянии и была в состоянии свертывания.Я пишу этот код для своего макета, но когда я прокручиваю макет, 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>

Это скриншот моего приложения: Expended State Collapsing State

Это скриншот моего ожидаемого поведения: Expended State Collapsing State

1 Ответ

0 голосов
/ 31 января 2019

Просто измените панель инструментов следующим образом

<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"/>

Спасибо

...