简体   繁体   English

我的底部导航栏没有显示任何图标或文本

[英]My bottom navigation bar is not showing up any icons or text

I tried creating a bottom navigation bar on android studio but none of the icons or text is showing.我尝试在 android studio 上创建底部导航栏,但没有显示任何图标或文本。 I have tried looking up solutions but to no avail.我曾尝试查找解决方案但无济于事。 When putting the navigation bar to wrap_content it does not show up which is why I temporarily set it to be 45dp.将导航栏放在 wrap_content 时它不会显示,这就是我暂时将其设置为 45dp 的原因。 Any help would be nice!你能帮忙的话,我会很高兴!

activity_main.xml activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/bottom_nav"
        android:layout_width="match_parent"
        android:layout_height="45dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:menu="@menu/menu"
        android:background="#5D03FF"
        app:itemIconTint="#ffff"
        app:labelVisibilityMode="labeled"
        app:itemTextColor="#ffff"/>
    <FrameLayout
        android:id="@+id/fragment_container"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintBottom_toBottomOf="@+id/bottom_nav"/>

</androidx.constraintlayout.widget.ConstraintLayout>

menu.xml菜单.xml

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/ic_qr"
        android:icon="@drawable/ic_qr"
        android:title="Scan"/>
    <item
        android:id="@+id/ic_file"
        android:icon="@drawable/ic_file"
        android:title="File"/>
    <item
        android:id="@+id/ic_generate"
        android:icon="@drawable/ic_generate"
        android:title="Create"/>
</menu>

Try this - Please find reference document for the BottomNavigationView- Link试试这个 - 请找到 BottomNavigationView- 链接的参考文档

  <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <FrameLayout
        android:id="@+id/fragment_container"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintBottom_toTopOf="@+id/bottom_nav"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/bottom_nav"
        android:layout_width="match_parent"
        android:layout_height="56dp"
        android:background="#5D03FF"
        app:itemIconTint="#ffff"
        app:itemTextColor="#ffff"
        app:labelVisibilityMode="labeled"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/menu" />
</androidx.constraintlayout.widget.ConstraintLayout>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM