2020-01-10 22:22:12 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-21 18:43:50 -05:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-01-10 22:22:12 -05:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2020-03-12 19:14:43 -04:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2020-01-10 22:22:12 -05:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
android:theme="?attr/actionBarTheme"
|
2020-01-16 21:43:10 -05:00
|
|
|
app:layout_scrollFlags="scroll|enterAlways|snap"
|
2020-03-15 16:46:38 -04:00
|
|
|
app:navigationIcon="@drawable/ic_close_24dp" />
|
2020-01-10 22:22:12 -05:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
2020-03-10 22:53:49 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout
|
2020-01-16 21:43:10 -05:00
|
|
|
android:id="@id/swipe_refresh"
|
2020-01-10 22:22:12 -05:00
|
|
|
android:layout_width="match_parent"
|
2020-01-12 11:47:26 -05:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2020-01-10 22:22:12 -05:00
|
|
|
|
2020-01-16 21:43:10 -05:00
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
android:id="@+id/nested_view"
|
2020-01-12 11:47:26 -05:00
|
|
|
android:layout_width="match_parent"
|
2020-01-16 21:43:10 -05:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
2020-01-12 11:47:26 -05:00
|
|
|
|
2020-01-16 21:43:10 -05:00
|
|
|
<WebView
|
|
|
|
android:id="@+id/webview"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress_bar"
|
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="2dp"
|
|
|
|
android:progressBackgroundTint="@color/colorPrimary"
|
|
|
|
android:progressTint="@color/colorPrimary" />
|
|
|
|
|
|
|
|
</WebView>
|
|
|
|
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
|
2020-03-10 22:53:49 -04:00
|
|
|
</eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout>
|
2020-01-12 11:47:26 -05:00
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|