123456789101112131415161718192021222324252627282930 |
- <?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=".ui.main.MainActivity">
- <androidx.viewpager2.widget.ViewPager2
- android:id="@+id/view_pager"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- app:layout_constraintBottom_toTopOf="@+id/navigation"
- app:layout_constraintTop_toTopOf="parent" />
- <com.google.android.material.bottomnavigation.BottomNavigationView
- android:id="@+id/navigation"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@color/white"
- app:itemBackground="@null"
- app:itemIconSize="24dp"
- app:itemTextAppearanceActive="@style/bottom_tab_title_active"
- app:itemTextAppearanceInactive="@style/bottom_tab_title_inactive"
- app:labelVisibilityMode="labeled"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintTop_toBottomOf="@+id/view_pager"
- app:menu="@menu/bottom_nav_item"
- tools:ignore="MissingConstraints" />
- </androidx.constraintlayout.widget.ConstraintLayout>
|