2019-10-21 21:25:15 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<io.github.wulkanowy.ui.widgets.MaterialTabLayout
|
|
|
|
android:id="@+id/schoolandteachersTabLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:background="?colorSurface"
|
|
|
|
android:visibility="invisible"
|
|
|
|
app:tabGravity="fill"
|
|
|
|
app:tabIndicatorColor="?colorPrimary"
|
|
|
|
app:tabMaxWidth="0dp"
|
|
|
|
app:tabMode="fixed"
|
|
|
|
app:tabSelectedTextColor="?colorPrimary"
|
2019-11-10 16:45:53 +01:00
|
|
|
app:tabTextColor="@color/material_on_surface_emphasis_medium"
|
2019-10-21 21:25:15 +02:00
|
|
|
tools:ignore="UnusedAttribute"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
|
|
android:id="@+id/schoolandteachersViewPager"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginTop="48dp"
|
|
|
|
android:visibility="invisible" />
|
|
|
|
|
2021-02-01 11:45:10 +01:00
|
|
|
<com.google.android.material.progressindicator.CircularProgressIndicator
|
2019-10-21 21:25:15 +02:00
|
|
|
android:id="@+id/schoolandteachersProgress"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:indeterminate="true" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
|