Task overview now has a RecyclerView adapter and displays dummy data in empty items; added database queries to retrieve tasks

This commit is contained in:
denizk0461
2023-05-22 15:32:19 +02:00
parent 61155eaec4
commit a1f18b3548
12 changed files with 306 additions and 8 deletions
@@ -64,7 +64,8 @@
<include layout="@layout/recycler_view"
android:id="@+id/recycler_view_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
android:id="@+id/fab_add_task"
+2 -1
View File
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.recyclerview.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.recyclerview.widget.RecyclerView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"