如何将新的 material BottomAppBar 实现为 BottomNavigationView
How to implement new material BottomAppBar as BottomNavigationView
我正在尝试实现通常如下所示的新 BottomAppBar:
material BottomAppBar as a BottomNavigationView like in the Google home app that looks like this.
我的问题是因为我只能用菜单资源填充 BottomAppBar,所以我无法理解如何对齐我的按钮以使其看起来像 BottomNavigationView(但 Fab 按钮使用 "cut")而不是将所有内容都对齐到 BottomAppBar 的一侧。
如何在这个新的 Material BottomAppBar 中添加自定义布局?
或者,有没有什么方法可以为 Fab 按钮实现带有 "cut" 的 BottomNavigationView(保持很酷的默认动画,如新的 BottomAppBar)?
1 - 在 build.gradle
的存储库中包含 Maven
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
2 - 将 material 组件依赖项放入 build.gradle.
请记住 material 版本会定期更新。
implementation 'com.google.android.material:material:1.0.0-alpha1'
3 - 设置compileSdkVersion, targetSdkVersion为最新的API version targeting Android P即28.
4 - 确保您的应用继承 Theme.MaterialComponents
主题,以便 BottomAppBar
使用最新的样式。或者,您可以在布局 xml 文件中的小部件声明中声明 BottomAppBar
的样式,如下所示。
style=”@style/Widget.MaterialComponents.BottomAppBar”
5 - 您可以按如下方式在布局中包含 BottomAppBar。 BottomAppBar 必须是 CoordinatorLayout 的子项。
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottom_app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:backgroundTint="@color/colorPrimary"
app:fabAlignmentMode="center"
app:fabAttached="true"
app:navigationIcon="@drawable/baseline_menu_white_24"/>
6 - 您可以通过在 FAB 的 app:layout_anchor 属性中指定 BottomAppBar 的 ID 将浮动操作按钮 (FAB) 锚定到 BottomAppBar。 BottomAppBar 可以承载具有形状背景的 FAB,或者 FAB 可以与 BottomAppBar 重叠。
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/baseline_add_white_24"
app:layout_anchor="@id/bottom_app_bar" />
7 -您可以使用许多属性来配置底部导航栏和 Fab 图标。
8 - Check this medium post for a more complete explanation.
更新:检查
已解决
基本上,我没有尝试将菜单资源强制到我需要的布局,而是使用了这个解决方案,我只是按照@dglozano 的建议,使用 "empty" 元素在 BottomAppBar 中放置了一个 LinearLayout。
使用 ?attr/selectableItemBackgroundBorderless
我也能够实现与 BottomNavigationView 非常相似的效果。
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:gravity="center"
app:layout_anchorGravity="start"
app:hideOnScroll="true"
app:fabAnimationMode="scale"
app:fabAlignmentMode="center"
app:contentInsetEnd="16dp"
app:contentInsetStart="16dp"
app:backgroundTint="@color/colorPrimary">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="5">
<ImageButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_home_white_24dp"
android:background="?attr/selectableItemBackgroundBorderless"
android:tint="@color/secondary_text"/>
<ImageButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_map_black_24dp"
android:background="?attr/selectableItemBackgroundBorderless"/>
<ImageButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/transparent"/>
<ImageButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_people_white_24dp"
android:background="?attr/selectableItemBackgroundBorderless"/>
<ImageButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_account_circle_24dp"
android:background="?attr/selectableItemBackgroundBorderless"/>
</LinearLayout>
</com.google.android.material.bottomappbar.BottomAppBar>
将 bottomAppBar 置于透明背景的 bottomNavigationView 下。并将空菜单项添加到 menu.xml 以释放 space 用于 FAB。
XML:
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/lt_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:fitsSystemWindows="false">
<ViewPager
android:id="@+id/main_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="56dp"
android:layout_above="@+id/bottom_navigation"
android:layout_alignParentStart="true" />
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:labelVisibilityMode="labeled"
android:layout_gravity="bottom"
android:layout_alignParentBottom="true"
android:background="@color/transparent"
app:menu="@menu/bottom_menu" />
<com.google.android.material.bottomappbar.BottomAppBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/bottom_bar"
android:layout_gravity="bottom"/>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_anchor="@id/bottom_bar"/>
Result
为 android 实现 material 组件的团队表示此设计不是规范的一部分,但他们慷慨地提供了一个简单的解决方案,可以在 link 以下。
Is it possible to have the BottomAppBar & FloatingActionButton with menu evenly distributed? #72
基本上,需要更改菜单按钮容器的布局参数:
if(bottomAppBar.childCount > 0) {
val actionMenuView = bottomAppBar.getChildAt(0) as androidx.appcompat.widget.ActionMenuView
actionMenuView.layoutParams.width = androidx.appcompat.widget.ActionMenuView.LayoutParams.MATCH_PARENT
}
将它与无效菜单项结合使用即可,避免使用另一个 android 组件。
这可能会帮助某人实现上述设计。添加空菜单项以调整 fab 按钮和 space.
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottom_bar"
style="@style/AppTheme.BottomAppBar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:layout_gravity="bottom"
android:backgroundTint="@color/bottom_bar">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
app:itemIconTint="@color/white"
app:labelVisibilityMode="unlabeled"
app:menu="@menu/bottom_menu">
</com.google.android.material.bottomnavigation.BottomNavigationView>
</com.google.android.material.bottomappbar.BottomAppBar>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:backgroundTint="@color/bottom_bar"
android:src="@drawable/ic_plus"
android:visibility="visible"
app:borderWidth="0dp"
app:fabAlignmentMode="end"
app:fabCradleMargin="20dp"
app:fabSize="normal"
app:layout_anchor="@id/bottom_bar"
app:maxImageSize="38dp"
app:tint="@color/white">
</com.google.android.material.floatingactionbutton.FloatingActionButton>
这应该适合你
结果
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="?attr/actionBarSize">
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottom_bar"
style="@style/Widget.MaterialComponents.BottomAppBar"
android:layout_width="match_parent"
android:layout_gravity="bottom"
android:layout_height="wrap_content" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/nav_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:layout_margin="0dp"
android:background="@drawable/transparent"
android:padding="0dp"
app:menu="@menu/bottom_nav_menu" />
</FrameLayout>
</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/bottom_bar"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
我正在尝试实现通常如下所示的新 BottomAppBar: material BottomAppBar as a BottomNavigationView like in the Google home app that looks like this.
我的问题是因为我只能用菜单资源填充 BottomAppBar,所以我无法理解如何对齐我的按钮以使其看起来像 BottomNavigationView(但 Fab 按钮使用 "cut")而不是将所有内容都对齐到 BottomAppBar 的一侧。
如何在这个新的 Material BottomAppBar 中添加自定义布局?
或者,有没有什么方法可以为 Fab 按钮实现带有 "cut" 的 BottomNavigationView(保持很酷的默认动画,如新的 BottomAppBar)?
1 - 在 build.gradle
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}
2 - 将 material 组件依赖项放入 build.gradle.
请记住 material 版本会定期更新。
implementation 'com.google.android.material:material:1.0.0-alpha1'
3 - 设置compileSdkVersion, targetSdkVersion为最新的API version targeting Android P即28.
4 - 确保您的应用继承 Theme.MaterialComponents
主题,以便 BottomAppBar
使用最新的样式。或者,您可以在布局 xml 文件中的小部件声明中声明 BottomAppBar
的样式,如下所示。
style=”@style/Widget.MaterialComponents.BottomAppBar”
5 - 您可以按如下方式在布局中包含 BottomAppBar。 BottomAppBar 必须是 CoordinatorLayout 的子项。
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottom_app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
app:backgroundTint="@color/colorPrimary"
app:fabAlignmentMode="center"
app:fabAttached="true"
app:navigationIcon="@drawable/baseline_menu_white_24"/>
6 - 您可以通过在 FAB 的 app:layout_anchor 属性中指定 BottomAppBar 的 ID 将浮动操作按钮 (FAB) 锚定到 BottomAppBar。 BottomAppBar 可以承载具有形状背景的 FAB,或者 FAB 可以与 BottomAppBar 重叠。
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/baseline_add_white_24"
app:layout_anchor="@id/bottom_app_bar" />
7 -您可以使用许多属性来配置底部导航栏和 Fab 图标。
8 - Check this medium post for a more complete explanation.
更新:检查
已解决
基本上,我没有尝试将菜单资源强制到我需要的布局,而是使用了这个解决方案,我只是按照@dglozano 的建议,使用 "empty" 元素在 BottomAppBar 中放置了一个 LinearLayout。
使用 ?attr/selectableItemBackgroundBorderless
我也能够实现与 BottomNavigationView 非常相似的效果。
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:gravity="center"
app:layout_anchorGravity="start"
app:hideOnScroll="true"
app:fabAnimationMode="scale"
app:fabAlignmentMode="center"
app:contentInsetEnd="16dp"
app:contentInsetStart="16dp"
app:backgroundTint="@color/colorPrimary">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="5">
<ImageButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_home_white_24dp"
android:background="?attr/selectableItemBackgroundBorderless"
android:tint="@color/secondary_text"/>
<ImageButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_map_black_24dp"
android:background="?attr/selectableItemBackgroundBorderless"/>
<ImageButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/transparent"/>
<ImageButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_people_white_24dp"
android:background="?attr/selectableItemBackgroundBorderless"/>
<ImageButton
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
app:srcCompat="@drawable/ic_account_circle_24dp"
android:background="?attr/selectableItemBackgroundBorderless"/>
</LinearLayout>
</com.google.android.material.bottomappbar.BottomAppBar>
将 bottomAppBar 置于透明背景的 bottomNavigationView 下。并将空菜单项添加到 menu.xml 以释放 space 用于 FAB。
XML:
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/lt_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:fitsSystemWindows="false">
<ViewPager
android:id="@+id/main_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="56dp"
android:layout_above="@+id/bottom_navigation"
android:layout_alignParentStart="true" />
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:labelVisibilityMode="labeled"
android:layout_gravity="bottom"
android:layout_alignParentBottom="true"
android:background="@color/transparent"
app:menu="@menu/bottom_menu" />
<com.google.android.material.bottomappbar.BottomAppBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/bottom_bar"
android:layout_gravity="bottom"/>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_anchor="@id/bottom_bar"/>
Result
为 android 实现 material 组件的团队表示此设计不是规范的一部分,但他们慷慨地提供了一个简单的解决方案,可以在 link 以下。
Is it possible to have the BottomAppBar & FloatingActionButton with menu evenly distributed? #72
基本上,需要更改菜单按钮容器的布局参数:
if(bottomAppBar.childCount > 0) {
val actionMenuView = bottomAppBar.getChildAt(0) as androidx.appcompat.widget.ActionMenuView
actionMenuView.layoutParams.width = androidx.appcompat.widget.ActionMenuView.LayoutParams.MATCH_PARENT
}
将它与无效菜单项结合使用即可,避免使用另一个 android 组件。
这可能会帮助某人实现上述设计。添加空菜单项以调整 fab 按钮和 space.
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottom_bar"
style="@style/AppTheme.BottomAppBar"
android:layout_width="match_parent"
android:layout_height="?android:attr/actionBarSize"
android:layout_gravity="bottom"
android:backgroundTint="@color/bottom_bar">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
app:itemIconTint="@color/white"
app:labelVisibilityMode="unlabeled"
app:menu="@menu/bottom_menu">
</com.google.android.material.bottomnavigation.BottomNavigationView>
</com.google.android.material.bottomappbar.BottomAppBar>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:backgroundTint="@color/bottom_bar"
android:src="@drawable/ic_plus"
android:visibility="visible"
app:borderWidth="0dp"
app:fabAlignmentMode="end"
app:fabCradleMargin="20dp"
app:fabSize="normal"
app:layout_anchor="@id/bottom_bar"
app:maxImageSize="38dp"
app:tint="@color/white">
</com.google.android.material.floatingactionbutton.FloatingActionButton>
这应该适合你
结果
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="?attr/actionBarSize">
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottom_bar"
style="@style/Widget.MaterialComponents.BottomAppBar"
android:layout_width="match_parent"
android:layout_gravity="bottom"
android:layout_height="wrap_content" >
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.google.android.material.bottomnavigation.BottomNavigationView
android:id="@+id/nav_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
android:layout_margin="0dp"
android:background="@drawable/transparent"
android:padding="0dp"
app:menu="@menu/bottom_nav_menu" />
</FrameLayout>
</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/bottom_bar"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>