18 lines
630 B
XML
18 lines
630 B
XML
<ViewAnimator xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/block_list_group"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ProgressBar
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/block_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/background_primary"
|
|
android:scrollbars="vertical" />
|
|
|
|
</ViewAnimator> |