2023-05-20 23:01:53 +02:00
|
|
|
<?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"
|
|
|
|
|
tools:context=".fragment.TaskOverviewFragment"
|
|
|
|
|
android:id="@+id/coordinator_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:fitsSystemWindows="true">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/app_title_bar"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
|
android:layout_marginBottom="8dp"
|
|
|
|
|
android:fontFamily="@font/lato_blackitalic"
|
|
|
|
|
android:text="@string/title_exam_overview"
|
|
|
|
|
app:layout_scrollFlags="scroll"
|
|
|
|
|
android:textSize="28sp"/>
|
|
|
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
2023-05-21 19:59:38 +02:00
|
|
|
<include layout="@layout/recycler_view"
|
|
|
|
|
android:id="@+id/recycler_view_layout"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
|
|
|
android:id="@+id/fab_add_task"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
app:icon="@drawable/plus"
|
|
|
|
|
android:text="@string/task_overview_fab_add_task"
|
|
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
|
android:layout_marginEnd="@dimen/fab_margin"
|
|
|
|
|
android:layout_marginBottom="@dimen/fab_margin"/>
|
|
|
|
|
|
2023-05-20 23:01:53 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|