0

我想使用没有导航抽屉控件和浮动操作按钮的 BottomAppBar。添加按钮后,它们会向右或向左对齐。

在此处输入图像描述

4

2 回答 2

5

笔记

如果你想删除Navigation drawer control只是app:navigationIcon="@drawable/ic_drawer"删除BottomAppBar

移除时输出app:navigationIcon="@drawable/ic_drawer"

示例代码

<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="120dp"
    android:layout_gravity="bottom">


    <com.google.android.material.bottomappbar.BottomAppBar
        android:id="@+id/bar"
        android:layout_width="match_parent"
        android:layout_height="58dp"
        android:layout_gravity="bottom"
        android:backgroundTint="@color/colorPrimaryDark"
        app:navigationIcon="@drawable/ic_drawer">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="end"
            android:orientation="horizontal">


            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="10dp"
                android:src="@drawable/ic_favorite" />

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="10dp"
                android:src="@drawable/ic_favorite" />

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="10dp"
                android:src="@drawable/ic_favorite" />

            <ImageView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_margin="10dp"
                android:src="@drawable/ic_favorite" />

        </LinearLayout>

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

</androidx.coordinatorlayout.widget.CoordinatorLayout>

输出

在此处输入图像描述

于 2019-02-06T12:39:08.977 回答
1

通过删除该行来删除通知图标:

    app:navigationIcon="@drawable/ic_drawer"

<com.google.android.material.bottomappbar.BottomAppBar
    android:id="@+id/bar"
    android:layout_width="match_parent"
    android:layout_height="58dp"
    android:layout_gravity="bottom"
    android:backgroundTint="@color/colorPrimaryDark"
    app:navigationIcon="@drawable/ic_drawer">

然后你可以在bottomappbar中添加左右填充:

<android.support.design.bottomappbar.BottomAppBar
        android:theme="@style/Widget.MaterialComponents.BottomAppBar"
        android:id="@+id/bottom_app_bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom"
        android:paddingStart="40dp"
        android:paddingLeft="40dp"
        android:paddingEnd="40dp"
        android:paddingRight="40dp"
        app:backgroundTint="@color/colorPrimary"
        app:fabAlignmentMode="center"/>

这将使底部AppBar 中间的四个图标居中。

最后一步是在图标/图像视图上添加填充/边距,您应该拥有一个不错的甚至水平分布的四个图标。我认为接受的答案并没有完全实现这一点。

于 2019-07-16T15:46:22.080 回答