ProjectLaogai/app/src/main/res/layout/fragment_mensa.xml

26 lines
1.2 KiB
XML
Raw Normal View History

2018-10-24 18:22:05 +02:00
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools"
2018-10-24 18:22:05 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MensaFragment">
2018-10-26 00:50:37 +02:00
<androidx.constraintlayout.widget.ConstraintLayout
2018-10-24 18:22:05 +02:00
android:layout_width="match_parent"
2018-10-26 00:50:37 +02:00
android:layout_height="match_parent">
<ScrollView
2018-10-26 00:50:37 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
2018-10-26 00:50:37 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content" android:id="@+id/linLayout_MensaFragment"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
>
</LinearLayout>
</ScrollView>
2018-10-26 00:50:37 +02:00
</androidx.constraintlayout.widget.ConstraintLayout>
2018-10-24 18:22:05 +02:00
</FrameLayout>