2020-05-08 15:23:03 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-02-25 19:31:47 -08:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-05-08 15:23:03 +10:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2021-02-25 19:31:47 -08:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-05-08 15:23:03 +10:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-02-25 19:31:47 -08:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:background="@color/splash_background"
|
|
|
|
android:backgroundTint="@color/splash_frame_background"
|
|
|
|
tools:context=".HomeActivity"
|
|
|
|
>
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/home_nav_host"
|
|
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:defaultNavHost="true"
|
|
|
|
app:navGraph="@navigation/nav_home"
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/navigationView"/>
|
|
|
|
|
|
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
|
|
|
android:id="@+id/navigationView"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="0dp"
|
|
|
|
android:layout_marginStart="0dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:itemBackground="@drawable/btm_navigation_background"
|
|
|
|
app:itemIconTint="@drawable/btm_navigation"
|
|
|
|
app:itemTextColor="@drawable/btm_navigation"
|
|
|
|
app:menu="@menu/navigation"
|
|
|
|
android:elevation="@dimen/space_24">
|
|
|
|
</com.google.android.material.bottomnavigation.BottomNavigationView>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|