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

27 lines
1.1 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: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"
android:layout_height="match_parent">
<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"
android:animateLayoutChanges="true"
android:background="@color/themePrimary"
android:id="@+id/linLayout_Mensa"/>
</ScrollView>
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
2018-10-24 18:22:05 +02:00
</FrameLayout>