2

我的应用程序中有一个主要活动,其中包含来自 Material Design Components的新底部应用程序栏。在用户交互中,我替换了不同的片段。

为了让用户知道他们在应用程序中的当前位置,我决定将底部应用程序栏的标题设置为与片段的标题相同。但是,我无法设置标题,在看到实现时我发现“底部应用栏不能有标题”。

在此处输入图像描述

我想知道在这种情况下我应该如何让用户知道他在应用程序中的位置,或者是否有任何方法可以设置底部应用程序栏的标题。

4

1 回答 1

12

是的,我们不能在BottomApp Bar中使用标题是真的,因为在某些情况下浮动按钮可能位于BottomApp Bar的中心并不方便。

但是您的问题是真实的,我们不能有应用栏(即使它在底部),我们需要为此设置标题。

因此,我通过(旧时代)复合布局解决了它。

<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <include layout="@layout/content_main" />

    <com.google.android.material.bottomappbar.BottomAppBar
        android:id="@+id/bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        app:fabAlignmentMode="end"
        app:backgroundTint="@color/colorPrimaryDark">

        <!-- Here is the magic happens -->

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

            <TextView
                android:id="@+id/your_title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="@string/app_name"
                android:textColor="#fff"
                android:layout_centerInParent="true"
                android:textAppearance="@style/Base.TextAppearance.AppCompat.Title"/>

        </RelativeLayout>

    </com.google.android.material.bottomappbar.BottomAppBar>

    <com.google.android.material.floatingactionbutton.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:layout_anchor="@id/bar"
        app:layout_insetEdge="right"
        app:rippleColor="@color/colorPrimary"
        android:src="@drawable/ic_menu_24"/>

</androidx.coordinatorlayout.widget.CoordinatorLayout> 

在上面的实现中,我设置了,app:fabAlignmentMode="end"以便我们可以有整洁的标题空间。

这种方法的好处是您可以使用自定义字体、颜色在任何程度上自定义标题。

上述实现的输出:

输出截图

我希望这能解决你的问题。

于 2018-08-08T17:49:25.057 回答