NavigationComponents не позволяет мне скрывать мой appBar - PullRequest
0 голосов
/ 09 марта 2020

Я пытаюсь использовать CollapsingToolbarLayout, чтобы показать изображение и несколько вариантов в обзоре переработчика. Я сделал следующее:

<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.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">

    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/recyclerView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toBottomOf="@id/appbar"
        app:layout_behavior="@string/appbar_scrolling_view_behavior" />

    <com.google.android.material.appbar.AppBarLayout
        android:id="@+id/appbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <com.google.android.material.appbar.CollapsingToolbarLayout
            android:id="@+id/collapsing_toolbar"
            android:layout_width="match_parent"
            android:layout_height="200dp"
            android:fitsSystemWindows="true"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleGravity="bottom"
            app:expandedTitleMarginEnd="@dimen/activity_horizontal_margin"
            app:expandedTitleMarginStart="@dimen/activity_horizontal_margin"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            app:title="@string/app_name">

            <ImageView
                android:id="@+id/toolbar_image"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:adjustViewBounds="true"
                android:contentDescription="@null"
                android:fitsSystemWindows="true"
                android:scaleType="centerCrop"
                android:src="@drawable/ofertas_gradient" />

            <androidx.appcompat.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" />


        </com.google.android.material.appbar.CollapsingToolbarLayout>
    </com.google.android.material.appbar.AppBarLayout>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

Этот код выводит этот макет

enter image description here

Теперь, это нормально, и это работает, как предполагается в моем фрагменте, дело в том, что у меня также есть панель приложения, настроенная мой NavigationController, и также появляется выше моя панель инструментов

Итак, после прокручивания вверх моя панель инструментов сваливается, но у меня также есть моя панель приложений

enter image description here

Итак, я сделал это это в моем фрагменте для настройки моей панели инструментов

toolbar.apply {
            setNavigationOnClickListener { findNavController().navigateUp() }
        }

Теперь я попытался с помощью actionBar.hide() скрыть свою панель действий и позволить отображаться только моей панели инструментов, но я не могу получить actionBar, также я пытался setHomeDisplay верно для панели инструментов, но так как я не могу получить actionBar, я также не могу добавить свою стрелку navigationUp на свою панель инструментов

Как я могу также получить appBar из каждого фрагмента?

Styles

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.MaterialComponents.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="android:windowLightStatusBar">true</item>
        <item name="actionBarTheme">@style/AppTheme.AppBarOverlay</item>
    </style>

    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar">
        <item name="android:textColorPrimary">@color/negro</item>
        <item name="fontFamily">@font/cera_pro_light</item>

    </style>

</resources>

Спасибо

1 Ответ

1 голос
/ 10 марта 2020

Вы используете панель инструментов и панель действий одновременно. Измените ваши стили. xml, изменив DarkActionBar -> NoActionBar. Если вам нужны обратные вызовы ActionBar для вашей деятельности или фрагмента, вам нужно установить панель инструментов как ActionBar.

<resources>

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.MaterialComponents.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
        <item name="android:windowLightStatusBar">true</item>
        <item name="actionBarTheme">@style/AppTheme.AppBarOverlay</item>
    </style>

    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.NoActionBar">
        <item name="android:textColorPrimary">@color/negro</item>
        <item name="fontFamily">@font/cera_pro_light</item>

    </style>

</resources>

Необязательно (в вашей деятельности onCreate())

setSupportActionBar(toolbar)
...