This repository has been archived on 2026-05-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
weserplaner/app/src/main/res/layout/fragment_parser.xml
T

28 lines
1.2 KiB
XML
Raw Normal View History

2023-04-08 11:41:02 +02:00
<?xml version="1.0" encoding="utf-8"?>
2023-04-10 14:50:57 +02:00
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
2023-04-08 11:41:02 +02:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".fragment.ParserFragment">
2023-04-08 11:41:02 +02:00
2023-04-08 18:53:51 +02:00
<WebView
android:id="@+id/webview"
2023-04-08 11:41:02 +02:00
android:layout_width="match_parent"
2023-04-10 14:50:57 +02:00
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"/>
2023-04-08 11:41:02 +02:00
2023-04-10 14:50:57 +02:00
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:layout_marginEnd="@dimen/fab_margin"
android:layout_marginBottom="@dimen/fab_margin"
app:srcCompat="@drawable/check" />
</androidx.constraintlayout.widget.ConstraintLayout>