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

33 lines
1.3 KiB
XML
Raw Normal View History

2018-10-03 14:28:23 -05:00
<?xml version="1.0" encoding="utf-8"?>
2018-10-20 13:59:46 -05:00
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-10-03 14:28:23 -05:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2017-07-18 13:17:18 -05:00
android:layout_width="match_parent"
2018-08-24 08:48:29 -05:00
android:layout_height="match_parent">
2018-10-20 13:59:46 -05:00
<com.google.android.material.tabs.TabLayout
2018-10-03 14:28:23 -05:00
android:id="@+id/gradeTabLayout"
2018-08-24 08:48:29 -05:00
android:layout_width="match_parent"
2018-10-14 15:16:58 -05:00
android:layout_height="48dp"
2018-10-03 14:28:23 -05:00
android:background="@color/colorPrimary"
android:elevation="5dp"
android:visibility="invisible"
app:tabGravity="fill"
app:tabIndicatorColor="@android:color/white"
app:tabMaxWidth="0dp"
app:tabMode="fixed"
app:tabTextColor="@android:color/white" />
2018-10-20 13:59:46 -05:00
<androidx.viewpager.widget.ViewPager
2018-10-03 14:28:23 -05:00
android:id="@+id/gradeViewPager"
android:layout_width="match_parent"
2018-10-03 14:28:23 -05:00
android:layout_height="match_parent"
2018-10-14 15:16:58 -05:00
android:layout_marginTop="48dp"
2018-10-03 14:28:23 -05:00
android:visibility="invisible" />
<ProgressBar
android:id="@+id/gradeProgress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2018-10-14 15:16:58 -05:00
android:layout_gravity="center"
2018-10-03 14:28:23 -05:00
android:indeterminate="true" />
2018-10-20 13:59:46 -05:00
</androidx.coordinatorlayout.widget.CoordinatorLayout>