88 lines
3.5 KiB
XML
88 lines
3.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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"
|
|
android:orientation="vertical">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/coordinator_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1">
|
|
|
|
<include layout="@layout/retro_backdrop" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:id="@+id/app_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0"
|
|
android:elevation="0dp"
|
|
app:elevation="0dp">
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_collapseMode="pin">
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/Toolbar48"
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
fontPath="@string/circular_std_black"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center"
|
|
android:text="@string/app_name"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Large"
|
|
tools:ignore="MissingPrefix" />
|
|
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
<ViewStub
|
|
android:id="@+id/cab_stub"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp" />
|
|
</FrameLayout>
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
<FrameLayout
|
|
android:id="@+id/fragment_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:background="@color/md_white_1000"
|
|
android:elevation="@dimen/card_elevation"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="?dividerColor" />
|
|
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
|
android:id="@+id/bottom_navigation"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0"
|
|
app:itemIconTint="@drawable/bottom_navigation_item_colors"
|
|
app:itemTextColor="@drawable/bottom_navigation_item_colors"
|
|
app:labelVisibilityMode="labeled"
|
|
app:menu="@menu/bottom_navigation_main"
|
|
tools:visibility="visible" />
|
|
</LinearLayout>
|