tachiyomi/app/src/main/res/layout/webview_activity.xml

61 lines
2.3 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-01-13 10:05:04 +01:00
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
2020-01-13 10:05:04 +01:00
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/web_view_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
2020-01-13 10:05:04 +01:00
android:fitsSystemWindows="true"
android:orientation="vertical">
<com.google.android.material.appbar.AppBarLayout
android:orientation="vertical"
android:id="@+id/web_linear_layout"
android:layout_width="match_parent"
2021-03-20 00:24:40 +01:00
android:fitsSystemWindows="true"
2020-01-13 10:05:04 +01:00
android:layout_height="wrap_content">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
2020-03-23 22:18:18 +01:00
android:background="?attr/colorSecondary"
android:theme="?attr/actionBarTheme"
app:navigationIcon="@drawable/ic_close_24dp"
2021-03-20 00:24:40 +01:00
app:layout_scrollFlags="scroll|enterAlways" />
</com.google.android.material.appbar.AppBarLayout>
2020-01-13 10:05:04 +01:00
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@id/swipe_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
2020-01-15 09:58:59 +01:00
2020-01-13 10:05:04 +01:00
<androidx.core.widget.NestedScrollView
android:id="@+id/nested_view"
2020-01-13 10:05:04 +01:00
android:layout_width="match_parent"
android:layout_height="match_parent">
<WebView
android:id="@+id/webview"
2021-03-20 00:24:40 +01:00
android:nestedScrollingEnabled="true"
android:layout_width="match_parent"
2021-03-20 00:24:40 +01:00
android:layout_height="wrap_content" >
2020-01-15 09:58:59 +01:00
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="2dp"
android:progressTint="?colorAccent"
2020-01-15 09:58:59 +01:00
android:progressBackgroundTint="@color/colorPrimary"
/>
</WebView>
</androidx.core.widget.NestedScrollView>
2020-01-13 10:05:04 +01:00
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>