it is necessary at the time of loading data instead of recyclerview to put a circular circular progressbar. He is now above RecyclerView, which is not very nice. How can I do that?
Markup
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <ProgressBar android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/progressBar" android:visibility="invisible"/> <android.support.v7.widget.RecyclerView android:id="@+id/recyclerViewCity" android:layout_width="match_parent" android:layout_height="wrap_content"> </android.support.v7.widget.RecyclerView> <TextView android:id="@+id/emptyTextView" android:text="No results found." android:gravity="center" android:layout_width="match_parent" android:layout_height="match_parent" /> </LinearLayout>