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

24 lines
927 B
XML
Raw Normal View History

2017-07-18 13:17:18 -05:00
<android.support.design.widget.CoordinatorLayout 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="io.github.wulkanowy.activity.dashboard.grades.GradesFragment">
2017-07-18 13:17:18 -05:00
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/subject_grade_recycler" />
<RelativeLayout
android:id="@+id/loadingPanel"
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.design.widget.CoordinatorLayout>