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

34 lines
1.7 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"
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"
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-02 19:09:36 +02:00
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:src="@drawable/ic_local_dining_black_24dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true" android:id="@+id/btnCardValue" android:visibility="visible"
android:layout_gravity="bottom|center|end" android:elevation="7dp" android:focusable="true"
android:layout_marginEnd="7dp" android:layout_marginBottom="7dp"/>
2018-10-24 18:22:05 +02:00
</FrameLayout>