fragment_tab_measure.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout xmlns:app="http://schemas.android.com/apk/res-auto"
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:tools="http://schemas.android.com/tools">
  5. <data>
  6. </data>
  7. <androidx.constraintlayout.widget.ConstraintLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent">
  10. <com.google.android.material.tabs.TabLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. app:layout_constraintBottom_toBottomOf="parent"
  14. app:layout_constraintEnd_toEndOf="parent"
  15. app:layout_constraintStart_toStartOf="parent"
  16. app:layout_constraintTop_toTopOf="parent">
  17. <com.google.android.material.tabs.TabItem
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:text="Monday" />
  21. <com.google.android.material.tabs.TabItem
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:text="Tuesday" />
  25. <com.google.android.material.tabs.TabItem
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:text="Wednesday" />
  29. </com.google.android.material.tabs.TabLayout>
  30. <ProgressBar
  31. android:id="@+id/progressBar"
  32. style="?android:attr/progressBarStyle"
  33. android:layout_width="128dp"
  34. android:layout_height="128dp"
  35. android:indeterminate="true"
  36. android:visibility="invisible"
  37. app:layout_constraintBottom_toBottomOf="parent"
  38. app:layout_constraintEnd_toEndOf="parent"
  39. app:layout_constraintStart_toStartOf="parent"
  40. app:layout_constraintTop_toTopOf="parent"
  41. tools:visibility="visible" />
  42. </androidx.constraintlayout.widget.ConstraintLayout>
  43. </layout>