12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/recycler"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:clipToPadding="false"
- android:paddingTop="4dp"
- android:paddingBottom="4dp"
- tools:listitem="@layout/global_search_controller_card" />
- <com.google.android.material.progressindicator.LinearProgressIndicator
- android:id="@+id/progress_bar"
- android:layout_width="match_parent"
- android:layout_height="2dp"
- android:max="100"
- android:visibility="gone"
- tools:progress="50"
- tools:visibility="visible" />
- <FrameLayout
- android:id="@+id/progress"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:visibility="gone">
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:alpha="0.75"
- android:background="?attr/colorSurface" />
- <com.google.android.material.progressindicator.CircularProgressIndicator
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:indeterminate="true" />
- </FrameLayout>
- <eu.kanade.tachiyomi.widget.EmptyView
- android:id="@+id/empty_view"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center"
- android:visibility="gone" />
- </FrameLayout>
|