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

32 lines
1.7 KiB
XML
Raw Normal View History

<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-10-30 20:41:22 +01:00
tools:context=".fragments.TimeTableFragment">
2019-04-06 14:13:01 +02:00
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:layout_width="match_parent"
2019-04-06 14:13:01 +02:00
android:layout_height="match_parent"
android:id="@+id/refreshLayout_Timetable">
2018-11-06 16:17:41 +01:00
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent" android:id="@+id/scrollView_Timetable">
2018-11-06 16:17:41 +01:00
<LinearLayout
android:orientation="vertical"
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_Timetable"/>
2018-11-06 16:17:41 +01:00
</ScrollView>
2019-04-06 14:13:01 +02:00
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:src="@drawable/icon_custom_black"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true" android:id="@+id/faBtnAddLesson" android:elevation="7dp"
android:visibility="visible" android:layout_gravity="bottom|center|end" android:layout_marginEnd="7dp"
android:layout_marginBottom="11dp" android:focusable="true"/>
</FrameLayout>