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

37 lines
1.3 KiB
XML
Raw Normal View History

2025-12-12 13:29:14 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@color/kbs_very_light_blue">
2026-01-08 11:32:48 +01:00
<!-- Redundant header er fjernet. Kun kategorilisten og nyhetslisten er igjen. -->
2025-12-12 13:29:14 +01:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_categories"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="8dp"
android:clipToPadding="false"
android:scrollbars="none"/>
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_news_full"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="8dp"
android:paddingHorizontal="4dp"
android:clipToPadding="false"/>
<ProgressBar
android:id="@+id/loading_news_full"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"/>
</FrameLayout>
</LinearLayout>