(已解决)Android Studio:底部导航视图未在我的菜单中显示项目

时间:2019-10-23 00:08:42

标签: android android-studio bottomnavigationview android-bottomnavigationview

我在activity_main.xml中使用了BottomNavigationView,起初我只在菜单中放置了1个项目,但是后来我在菜单中添加了更多项目,但是即使删除了,它也只显示了开始时添加的项目。菜单中的所有内容,它仍然只显示开始时放在菜单中的项目。我该如何解决?

我曾尝试重建整个activity_main.xml和menu.xml,但仍未解决。下面是我的activity_main.xml和menu.xml

menu.xml:

<?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/home"
        android:title="@string/Home"
        android:icon="@drawable/home" />
    <item android:id="@+id/profile"
        android:title="@string/Profile"
        android:icon="@drawable/profile" />
</menu>

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/bottomNavigationView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/yellow"
        app:itemIconTint="@color/black"
        app:itemTextColor="@color/black"
        app:labelVisibilityMode="auto"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:menu="@menu/menu" />
</androidx.constraintlayout.widget.ConstraintLayout>

依赖项:

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.android.support:support-core-utils:27.1.1'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:recyclerview-v7:29.0.0'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.2'

一开始我只添加项目:首页,稍后添加第二个项目:配置文件,但是导航视图仅显示我在该时间添加的首页我建造它。

当我从gradle中删除下面的行并且不知道为什么这行出现在我的gradle中之后,该问题已得到解决。

sourceSets { main { res.srcDirs = ['src/main/res', 'src/main/res/menu'] } }

0 个答案:

没有答案