You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1.0 KiB
24 lines
1.0 KiB
<?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"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
|
android:id="@+id/bottom_navigation_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="45dp"
|
|
android:elevation="10dp"
|
|
android:background="@color/background"
|
|
app:labelVisibilityMode="unlabeled"
|
|
app:menu="@menu/main_bnv"
|
|
app:layout_constraintBottom_toBottomOf="parent" />
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/view_pager_main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintBottom_toTopOf="@+id/bottom_navigation_view"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |