如何在底部导航视图之间划分空间?

时间:2018-04-17 13:00:26

标签: android android-layout navigation-drawer bottomnavigationview android-bottomnav

enter image description here

我需要使用两个菜单项创建底部导航。但视图比例为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" />

2 个答案:

答案 0 :(得分:1)

  

我需要使用两个菜单项创建底部导航。但视图比例为30:70,文本重力位于中心。一个菜单包含图像和文本一个只包含文本

*ngIf="!isValid" 您无法更好地使用菜单为此创建自定义布局

示例代码

AFAIK

<强>输出

enter image description here

答案 1 :(得分:0)

您可以使用简单的LinearLayout和weightsum以70-30重量来减轻体重,以避免复杂的BottomNavigation菜单。使用ImageView和TextView设置一个具有垂直线性布局的视图,使用TextView设置另一个视图。两个视图的父级都是水平LinearLayout。