<?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:background="@color/mobile_background"
    android:fitsSystemWindows="true"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <View
        android:id="@+id/background_dim_overlay"
        android:background="@android:color/black"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:alpha="0"/>
    <ProgressBar
        android:layout_gravity="top"
        android:id="@+id/cw_loading_indicator"
        android:visibility="gone"
        android:layout_width="match_parent"
        android:layout_height="4dp"
        android:indeterminate="true"
        android:elevation="4dp"
        style="?android:attr/progressBarStyleHorizontal"/>
    <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
        android:id="@+id/swipe_refresh"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/rows_recycler_view"
            android:paddingTop="@dimen/spacing_md_mobile"
            android:paddingBottom="@dimen/content_bottom_inset_behind_nav"
            android:clipToPadding="false"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"/>
    </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</FrameLayout>
