В чем может быть проблема с макетом? Как сделать так, чтобы оно отображалось в центре второго или первого относительного макета? Я попробовал все из них и до сих пор не отображается.
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<RelativeLayout
android:id="@+id/relative_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
//Some views here
</RelativeLayout>
<View
android:id="@+id/view"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_alignBottom="@+id/relative_header"
android:background="#D8E5EE" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerViewAll"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/view"
android:layout_marginTop="10dp" />
<Progressbar
android:id="@+id/progress_circular"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:indeterminate="true"
/>
</RelativeLayout>