kbsintranett/app/src/main/res/layout/fragment_calendar_full.xml

42 lines
1.6 KiB
XML
Raw Normal View History

2025-12-11 14:51:18 +01:00
<?xml version="1.0" encoding="utf-8"?>
2026-01-08 11:32:48 +01:00
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
2025-12-11 14:51:18 +01:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
2026-01-07 15:15:10 +01:00
android:background="@color/white">
2025-12-11 14:51:18 +01:00
2026-01-08 11:32:48 +01:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_full_calendar"
2025-12-11 14:51:18 +01:00
android:layout_width="match_parent"
2026-01-08 11:32:48 +01:00
android:layout_height="match_parent"
android:clipToPadding="false"
android:paddingBottom="80dp" />
2025-12-11 14:51:18 +01:00
2026-01-08 11:32:48 +01:00
<ProgressBar
android:id="@+id/loading_full_calendar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"/>
2025-12-11 14:51:18 +01:00
2026-01-08 11:32:48 +01:00
<TextView
android:id="@+id/empty_view_calendar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Ingen hendelser funnet"
android:layout_gravity="center"
android:visibility="gone"/>
2025-12-11 14:51:18 +01:00
2026-01-08 11:32:48 +01:00
<!-- NY FAB: Flytende knapp nederst til høyre -->
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab_add_calendar_event"
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:visibility="gone"
android:contentDescription="Ny hendelse" />
2025-12-11 14:51:18 +01:00
2026-01-08 11:32:48 +01:00
</FrameLayout>