(Решено)Android Studio: в нижнем окне навигации не отображается элемент в моем меню, добавленный позже
Я использовал BottomNavigationView в моем activity_main.xml, сначала я помещал только 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'
Вначале я добавляю только элемент: Home, позже я добавляю свой второй элемент: Profile, но в навигационном представлении отображается только Home, который я добавил, когда создавал его.
Проблема была исправлена после того, как я удалил строку ниже из градиента, и я не знаю, почему эта строка находится в моем градиенте.
sourceSets { main { res.srcDirs = ['src/main/res', 'src/main/res/menu'] } }
1 ответ
Я не могу найти эту строку в своем градиенте. Помогите пожалуйста, что делать? Я очень взволнован