2020-01-11 04:22:12 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-06-13 21:56:40 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-01-11 04:22:12 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-11-09 23:39:22 +01:00
|
|
|
android:fitsSystemWindows="true"
|
2020-01-11 04:22:12 +01:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2020-03-13 00:14:43 +01:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2020-01-11 04:22:12 +01:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:background="?attr/colorPrimary"
|
|
|
|
android:theme="?attr/actionBarTheme"
|
2020-03-15 21:46:38 +01:00
|
|
|
app:navigationIcon="@drawable/ic_close_24dp" />
|
2020-01-11 04:22:12 +01:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
2020-03-11 03:53:49 +01:00
|
|
|
<eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout
|
2020-01-17 03:43:10 +01:00
|
|
|
android:id="@id/swipe_refresh"
|
2020-01-11 04:22:12 +01:00
|
|
|
android:layout_width="match_parent"
|
2020-06-13 21:56:40 +02:00
|
|
|
android:layout_height="match_parent">
|
2020-01-11 04:22:12 +01:00
|
|
|
|
2020-06-13 21:56:40 +02:00
|
|
|
<WebView
|
|
|
|
android:id="@+id/webview"
|
2020-01-12 17:47:26 +01:00
|
|
|
android:layout_width="match_parent"
|
2020-06-13 21:56:40 +02:00
|
|
|
android:layout_height="match_parent">
|
2020-01-12 17:47:26 +01:00
|
|
|
|
2020-12-26 16:39:09 +01:00
|
|
|
<com.google.android.material.progressindicator.LinearProgressIndicator
|
2020-06-13 21:56:40 +02:00
|
|
|
android:id="@+id/progress_bar"
|
2020-01-17 03:43:10 +01:00
|
|
|
android:layout_width="match_parent"
|
2020-12-26 16:39:09 +01:00
|
|
|
android:layout_height="wrap_content" />
|
2020-01-17 03:43:10 +01:00
|
|
|
|
2020-06-13 21:56:40 +02:00
|
|
|
</WebView>
|
2020-01-17 03:43:10 +01:00
|
|
|
|
2020-03-11 03:53:49 +01:00
|
|
|
</eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout>
|
2020-01-12 17:47:26 +01:00
|
|
|
|
2020-06-13 21:56:40 +02:00
|
|
|
</LinearLayout>
|