如何制作此底部导航栏?

问题描述 投票:0回答:1

你好!

我只想知道是否可以使用此令人惊叹的蓝色中心按钮制作一个底部导航栏,例如this。我只想要设计(xml代码)。你能帮我吗?

谢谢!

android android-studio
1个回答
0
投票
<android.support.design.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"> <!-- Other components and views --> <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:navigationIcon="@drawable/ic_menu_24"/> <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"/> </android.support.design.widget.CoordinatorLayout>
© www.soinside.com 2019 - 2024. All rights reserved.