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

27 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"
2019-06-02 19:09:36 +02:00
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"
2018-10-30 20:41:22 +01:00
tools:context=".fragments.MensaFragment">
2018-10-24 18:22:05 +02:00
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
2018-10-24 18:22:05 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/refreshLayout_Mensa">
2018-10-26 00:50:37 +02:00
<ScrollView
2018-10-26 00:50:37 +02:00
android:layout_width="match_parent"
2019-06-03 10:59:32 +02:00
android:layout_height="match_parent" android:id="@+id/scrollView_Mensa">
<LinearLayout
android:orientation="vertical"
2018-10-26 00:50:37 +02:00
android:layout_width="match_parent"
2019-04-03 20:37:17 +02:00
android:layout_height="wrap_content"
2019-04-08 18:39:43 +02:00
android:animateLayoutChanges="false"
2019-04-03 20:37:17 +02:00
android:background="@color/themePrimary"
android:id="@+id/linLayout_Mensa"/>
</ScrollView>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
2019-06-03 10:59:32 +02:00
2018-10-24 18:22:05 +02:00
</FrameLayout>