BottomNavigationView не показывает заголовки и значки - PullRequest
0 голосов
/ 14 апреля 2020

Я пытаюсь использовать androidx BottomNavigationView в одном упражнении с 3 фрагментами для перемещения между этими фрагментами, но значки и заголовки не отображаются.

enter image description here

Я перепробовал много ответов на один и тот же вопрос, и установил метку метки Visibility в labled, но ничего не получалось

макет активности

  <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=".Sorting_activity">

    <RelativeLayout
        android:id="@+id/triLayout"
        android:layout_width="0dp"
        android:layout_height="300dp"
        app:layout_constraintBottom_toTopOf="@+id/stepsLayout"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.0"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.0"
    </RelativeLayout>
    <androidx.coordinatorlayout.widget.CoordinatorLayout
        android:id="@+id/stepsLayout"
        android:layout_width="0dp"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintBottom_toTopOf="@+id/buttomLayout"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/triLayout"
       >
    </androidx.coordinatorlayout.widget.CoordinatorLayout>

    <RelativeLayout
        android:id="@+id/buttomLayout"
        android:layout_width="match_parent"
        android:layout_height="49dp"
        tools:ignore="MissingConstraints"
        tools:layout_editor_absoluteX="0dp"
        tools:layout_editor_absoluteY="682dp"
        >
        <com.google.android.material.bottomnavigation.BottomNavigationView
            android:id="@+id/bottom_navigation"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/cardview_shadow_start_color"
            app:menu="@menu/buttom_navigation"
            tools:layout_editor_absoluteX="0dp"
            tools:layout_editor_absoluteY="682dp"
            app:labelVisibilityMode="labeled"
            app:itemIconTint="@color/colorAccent"
            app:itemTextColor="@color/colorPrimary"/>
    </RelativeLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

меню

 <menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:id="@+id/nav_theory"
        android:icon="@drawable/ic_baseline_theory_24"
        android:title="@string/bottom_navigation_menu_theory" />

    <item
        android:id="@+id/nav_steps"
        android:icon="@drawable/ic_baseline_sort_24"
        android:title="@string/bottom_navigation_menu_steps"
        />

    <item
        android:id="@+id/nav_code"
        android:icon="@drawable/ic_baseline_code_24"
        android:title="@string/bottom_navigation_menu_code" />
</menu>

Ответы [ 2 ]

3 голосов
/ 14 апреля 2020

Попробуй очистить проект и перестроить и Попробуй так, как он работает на моем

<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"
    >


<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/stepsLayout"
android:layout_width="0dp"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
    >
</androidx.coordinatorlayout.widget.CoordinatorLayout>



    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/bottom_navigation"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_marginStart="0dp"
        android:layout_marginEnd="0dp"
        app:labelVisibilityMode="labeled"
        android:visibility="visible"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:menu="@menu/bottom_nav_menu" />
    </androidx.constraintlayout.widget.ConstraintLayout>
0 голосов
/ 16 апреля 2020

Если вы не видите ур иконки, попробуйте добавить это:

<com.google.android.material.bottomnavigation.BottomNavigationView
    android:id="@+id/bottom_navigation"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_marginStart="0dp"
    android:layout_marginEnd="0dp"
    app:labelVisibilityMode="labeled"
    android:visibility="visible"
    app:itemBackground="#ffffff"
    app:itemTextColor="#ffffff"
    app:itemIconTint="#ffffff"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"

    app:layout_constraintRight_toRightOf="parent"
    app:menu="@menu/menu_navegacion" />
...