模拟iOS底栏Android

时间:2016-03-07 23:32:22

标签: android ios

有没有办法像Android一样在Android上模拟底栏?

当我在标签内时,如果我需要另一个活动的意图,我想保持底部栏可见并进行平滑过渡,保持底部栏可见。也许有可能使用CoordinatorLayout

来实现这一目标

谢谢。

1 个答案:

答案 0 :(得分:0)

从设计支持库(compile 'com.android.support:design:25.0.0')的v25开始,您可以使用BottomNavigationView

  <android.support.design.widget.BottomNavigationView
       xmlns:design="http://schemas.android.com/apk/res-auto"
        android:layout_gravity="bottom"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        design:menu="@menu/bottom_menu" />

Here更多的是使用它。