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

25 lines
1.0 KiB
XML
Raw Normal View History

<?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"
2018-10-30 20:41:22 +01:00
tools:context=".fragments.TimeTableFragment">
2018-11-06 16:17:41 +01:00
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
2018-11-06 16:17:41 +01:00
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="vertical"
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_Timetable"/>
2018-11-06 16:17:41 +01:00
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>
</FrameLayout>