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_second.xml
T

15 lines
600 B
XML
Raw Normal View History

2023-04-08 11:41:02 +02:00
<?xml version="1.0" encoding="utf-8"?>
2023-04-08 18:53:51 +02:00
<androidx.appcompat.widget.LinearLayoutCompat 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"
2023-04-08 18:53:51 +02:00
android:orientation="vertical"
2023-04-08 11:41:02 +02:00
tools:context=".fragment.SecondFragment">
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-08 18:53:51 +02:00
android:layout_height="match_parent"/>
2023-04-08 11:41:02 +02:00
2023-04-08 18:53:51 +02:00
</androidx.appcompat.widget.LinearLayoutCompat>