|
@@ -1,5 +1,5 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<LinearLayout
|
|
|
+<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
android:layout_width="match_parent"
|
|
@@ -17,13 +17,21 @@
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
android:background="?attr/colorPrimary"
|
|
|
android:theme="?attr/actionBarTheme"
|
|
|
- app:navigationIcon="@drawable/ic_close_white_24dp" />
|
|
|
+ app:navigationIcon="@drawable/ic_close_white_24dp"
|
|
|
+ app:layout_scrollFlags="scroll|enterAlways|snap" />
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
- <WebView
|
|
|
- android:id="@+id/webview"
|
|
|
+ <androidx.core.widget.NestedScrollView
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent" />
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
|
-</LinearLayout>
|
|
|
+ <WebView
|
|
|
+ android:id="@+id/webview"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent" />
|
|
|
+
|
|
|
+ </androidx.core.widget.NestedScrollView>
|
|
|
+
|
|
|
+</androidx.coordinatorlayout.widget.CoordinatorLayout>
|