2023-04-12 18:58:10 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-04-25 12:02:25 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-04-12 18:58:10 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2023-04-25 12:02:25 +02:00
|
|
|
android:id="@+id/root_view"
|
2023-04-12 18:58:10 +02:00
|
|
|
android:layout_width="match_parent"
|
2023-04-23 17:13:48 +02:00
|
|
|
android:layout_height="match_parent">
|
2023-04-12 18:58:10 +02:00
|
|
|
|
|
|
|
|
<WebView
|
|
|
|
|
android:id="@+id/webview"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"/>
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
|
|
|
|
android:id="@+id/fab"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2023-04-25 12:02:25 +02:00
|
|
|
android:layout_gravity="bottom|end"
|
2023-04-12 18:58:10 +02:00
|
|
|
android:layout_marginEnd="@dimen/fab_margin"
|
|
|
|
|
android:layout_marginBottom="@dimen/fab_margin"
|
2023-05-02 16:05:33 +02:00
|
|
|
app:srcCompat="@drawable/save"/>
|
2023-04-12 18:58:10 +02:00
|
|
|
|
2023-04-25 12:02:25 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|