forked from github/wulkanowy-mirror
* Add timetable entities, synchronization and UI * Add better code hub config * Update SDK tools * Change activity to ui * [API] fix lesson room, when division into groups * [API] Rewrite lesson parser * [API] Add support for new lesson type * [API] Fix for substitutions in the timetable
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/coordinator_grade"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:context="io.github.wulkanowy.ui.main.grades.GradesFragment">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/timetable_progress_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center">
|
|
|
|
<ProgressBar
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:indeterminate="true" />
|
|
</RelativeLayout>
|
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/timetable_refresh_layout">
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/timetable_recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
|
|
|
</android.support.design.widget.CoordinatorLayout> |