看到新的指南出来了,并在google photos最新的应用程序中使用.不知道如何使用新的底部导航栏.通过新的支持lib查看,没有发现任何领先优势.

找不到任何官方样品.
如何使用新的底栏?不想做任何自定义.
如何根据谷歌新指南(纯机器人)实现底部导航选项卡.有什么例子吗?
参考:https://www.google.com/design/spec/components/bottom-navigation.html
android android-design-library bottomnavigationview android-bottomnav
这是我的android xml源代码,用于地图 - 底栏布局.我在屏幕上显示一个巨大的地图,我需要在屏幕底部有一个30dp的高布局,以显示一些像图像一样的标签.如何将水平线性布局推到页面底部?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height=" what here ? "
android:layout_width="fill_parent"
android:orientation="vertical">
<com.google.android.maps.MapView
android:id="@+id/map_view"
Map goes here. Almost full screen. Exactly full - 30dp;
/>
<LinearLayout>
I want 3 images here. Bottom of the screen.
</LinearLayout>
</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)