我在我的activity_main.xml中使用了BottomNavigationView,起初我只在我的菜单中放了1个项目,但后来我在我的菜单中添加了更多项目,但它只显示我在开始时添加的项目,即使我删除了我的所有内容菜单,它仍然只显示我一开始放在菜单中的项目。我怎样才能解决这个问题?
我曾尝试重建整个activity_main.xml 和menu.xml,但它仍然没有修复。下面是我的 activity_main.xml 和 menu.xml
菜单.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>
活动主.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'
一开始我只添加了项目: Home,后来我添加了第二个项目: Profile,但是导航视图只显示了我在构建它时添加的 Home 。
在我从 gradle 中删除下面的行后,该问题已得到解决,但我不知道为什么此行在我的 gradle 中。
sourceSets { main { res.srcDirs = ['src/main/res', 'src/main/res/menu'] } }