|
@@ -1,5 +1,6 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
+<layout xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
+ xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
|
|
|
<data>
|
|
<data>
|
|
|
|
|
|
|
@@ -9,5 +10,30 @@
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent">
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
+ <com.google.android.material.tabs.TabLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
+
|
|
|
|
|
+ <com.google.android.material.tabs.TabItem
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:text="Monday" />
|
|
|
|
|
+
|
|
|
|
|
+ <com.google.android.material.tabs.TabItem
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:text="Tuesday" />
|
|
|
|
|
+
|
|
|
|
|
+ <com.google.android.material.tabs.TabItem
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:text="Wednesday" />
|
|
|
|
|
+ </com.google.android.material.tabs.TabLayout>
|
|
|
|
|
+
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
+
|
|
|
</layout>
|
|
</layout>
|