26 lines
No EOL
1 KiB
XML
26 lines
No EOL
1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/kbs_very_light_blue">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recycler_tasks"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:padding="8dp"
|
|
android:clipToPadding="false" />
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
android:id="@+id/fab_add_task"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="bottom|end"
|
|
android:layout_margin="24dp"
|
|
android:src="@android:drawable/ic_input_add"
|
|
app:backgroundTint="@color/kbs_logo_blue"
|
|
app:tint="@color/white"
|
|
android:contentDescription="Legg til oppgave" />
|
|
|
|
</FrameLayout> |