<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout
|
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"
|
tools:context=".ui.main.hall.HallFragment" >
|
|
<com.google.android.material.tabs.TabLayout
|
android:id="@+id/tabLayout"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
app:tabMaxWidth="0dp"
|
app:tabIndicatorFullWidth="false"
|
app:tabSelectedTextColor="@color/white"
|
app:tabTextColor="@color/enable"
|
app:tabIndicatorColor="@color/white"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintRight_toRightOf="parent"
|
app:layout_constraintTop_toTopOf="parent" />
|
|
<androidx.viewpager2.widget.ViewPager2
|
android:id="@+id/view_pager_2"
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:nestedScrollingEnabled="false"
|
app:layout_constraintTop_toBottomOf="@id/tabLayout"
|
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintRight_toRightOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent" />
|
</androidx.constraintlayout.widget.ConstraintLayout>
|