如何制作此底部导航栏?

时间:2020-02-03 20:46:19

标签: android android-studio

你好!

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

谢谢!

1 个答案:

答案 0 :(得分:0)

我想您可以从tutorial开始获得想要的效果 那么您必须工作,我猜成一个圆圈,以便您可以在另一篇教程中更改尺寸来尝试放大this,只是为了热身并对这个概念充满信心,然后您将找到带有代码{{ 3}}

<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>