2017-09-23 07:11:39 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-01-09 19:10:55 -05:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-09-23 07:11:39 -04:00
|
|
|
android:layout_width="match_parent"
|
2020-01-09 19:10:55 -05:00
|
|
|
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"
|
2020-04-12 12:21:47 -04:00
|
|
|
tools:listitem="@layout/global_search_controller_card" />
|
2020-01-09 19:10:55 -05:00
|
|
|
|
2020-12-26 10:39:09 -05:00
|
|
|
<com.google.android.material.progressindicator.LinearProgressIndicator
|
2020-11-22 16:53:59 -05:00
|
|
|
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" />
|
|
|
|
|
2020-04-21 19:01:01 -04:00
|
|
|
<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"
|
2020-10-24 13:31:29 -04:00
|
|
|
android:alpha="0.75"
|
|
|
|
android:background="?attr/colorSurface" />
|
2020-04-21 19:01:01 -04:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
style="?android:attr/progressBarStyleLarge"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
2020-07-25 17:14:34 -04:00
|
|
|
<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" />
|
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
</FrameLayout>
|