1
0
mirror of https://github.com/wulkanowy/wulkanowy.git synced 2024-09-21 14:49:09 -05:00
wulkanowy-mirror/app/src/main/res/layout/fragment_timetable_tab.xml

33 lines
1.3 KiB
XML
Raw Normal View History

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
2018-03-04 05:49:16 -06:00
android:id="@+id/timetable_tab_fragment_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="io.github.wulkanowy.ui.main.grades.GradesFragment">
<RelativeLayout
2018-03-04 05:49:16 -06:00
android:id="@+id/timetable_tab_fragment_progress_bar"
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-03-04 05:49:16 -06:00
android:gravity="center"
android:visibility="gone">
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true" />
</RelativeLayout>
<android.support.v4.widget.SwipeRefreshLayout
2018-03-04 05:49:16 -06:00
android:id="@+id/timetable_tab_fragment_swipe_refresh"
android:layout_width="match_parent"
2018-03-04 05:49:16 -06:00
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
2018-03-04 05:49:16 -06:00
android:id="@+id/timetable_tab_fragment_recycler"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</android.support.v4.widget.SwipeRefreshLayout>
</android.support.design.widget.CoordinatorLayout>