58 lines
2.1 KiB
XML
58 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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:fitsSystemWindows="true"
|
|
>
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
>
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:background="?attr/colorPrimary"
|
|
/>
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
<TextView
|
|
android:id="@+id/info"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone"
|
|
android:textSize="@dimen/heading_size"
|
|
android:layout_gravity="center"
|
|
android:text="Tap on Plus Button to take a new test."
|
|
/>
|
|
|
|
<include layout="@layout/content_main" />
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/fab"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|end"
|
|
android:layout_marginBottom="120dp"
|
|
android:layout_marginRight="30dp"
|
|
|
|
android:backgroundTint="@android:color/holo_blue_dark"
|
|
|
|
app:srcCompat="@drawable/ic_baseline_add_24"
|
|
tools:ignore="VectorDrawableCompat" />
|
|
<!-- <com.google.android.material.bottomnavigation.BottomNavigationView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|end"
|
|
android:id="@+id/bottom_Navigation"
|
|
app:menu="@menu/bottom"
|
|
android:layout_marginBottom="40dp"
|
|
></com.google.android.material.bottomnavigation.BottomNavigationView>
|
|
|
|
-->
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |