我需要使用两个菜单项创建底部导航。但视图比例为30:70,文本重力位于中心。 一个菜单包含图像和文本一个只包含文本
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/bottom_navigation_1"
android:icon="@drawable/ic_symbol1"
android:title="@string/bottom_navigation_title1"
app:showAsAction="always|withText" />
<item
android:id="@+id/bottom_navigation_2"
android:icon="@drawable/ic_symbol2"
android:title="@string/bottom_navigation_title2"
app:showAsAction="always|withText" />
主要布局中的代码
<android.support.design.widget.BottomNavigationView
android:state_enabled="true"
android:id="@+id/home_screen_bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:layout_marginEnd="0dp"
android:layout_marginStart="0dp"
android:background="?android:attr/windowBackground"
app:menu="@menu/bottom_navigation1" />