我需要在底部导航栏中隐藏项目标题



i创建底部导航栏,我需要隐藏标题并仅显示图标,但是当我用空字符串编写标题时,图标和底部之间就有很大的空间,它只是用空字符串和空字符串替换字符串我进行了很多搜索,但没有找到解决方案,所以任何帮助

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.easyschools.student.HomeActivity">
<FrameLayout
    android:id="@+id/main_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/navigation"
    android:layout_alignParentTop="true">
 </FrameLayout>
<android.support.design.widget.BottomNavigationView
    android:id="@+id/navigation"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginEnd="0dp"
    android:layout_marginStart="0dp"
    android:background="@android:color/white"
    android:layout_alignParentBottom="true"
    app:menu="@menu/navigation"/>
</RelativeLayout>

navigation.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
    <item
        android:id="@+id/nav_messages"
        android:icon="@drawable/msg_icon"
        android:title=""/>
    <item
        android:id="@+id/nav_home"
        android:icon="@drawable/home_icon"
        android:title=""
        android:checked="true"/>
    <item
        android:id="@+id/nav_notify"
        android:icon="@drawable/notify_icon"
        android:title=""/>
    <item
        android:id="@+id/nav_my_profile"
        android:icon="@drawable/user_icon"
        android:title=""/>
</menu>

从支持库28.0.0-alpha1开始,您可以使用:

app:labelVisibilityMode="unlabeled"

隐藏标题和

app:itemHorizontalTranslationEnabled="false"

add:

xmlns:app="http://schemas.android.com/apk/res-auto"

在XML中禁用转移模式到您的BottomNavigationView

您可以使用bottomNavigationView的以下属性:

app:labelVisibilityMode="unlabeled"

还包括您的布局中的以下行:

 xmlns:app="http://schemas.android.com/apk/res-auto"

供参考,您可以使用以下链接:https://www.11zon.com/zon/android/remove-bottom-navigation-view-view-title-in-android.php

BottomNavigationView有很多限制。

例如,您可以使用空的String ""设置标题,但我建议您使用库轻松增强底部导航栏。

您可以尝试一下:https://github.com/ittianyu/bottomnavigationViewExex

相关内容

  • 没有找到相关文章

最新更新