You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.6 KiB
32 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" |
|
xmlns:tools="http://schemas.android.com/tools" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
tools:context=".fragments.TimeTableFragment" |
|
android:background="?themePrimary"> |
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:id="@+id/refreshLayout_Timetable"> |
|
|
|
<ScrollView |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" android:id="@+id/scrollView_Timetable"> |
|
<LinearLayout |
|
android:orientation="vertical" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:animateLayoutChanges="false" |
|
android:id="@+id/linLayout_Timetable"/> |
|
</ScrollView> |
|
</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="gone" android:layout_gravity="bottom|center|end" android:layout_marginEnd="11dp" |
|
android:layout_marginBottom="11dp" android:focusable="true"/> |
|
</FrameLayout> |