| 123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:orientation="vertical"
- android:layout_height="match_parent"
- android:background="@color/colorPrimary">
- <androidx.viewpager2.widget.ViewPager2
- android:id="@+id/main_view_pager"
- android:layout_width="match_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- app:layout_constraintBottom_toTopOf="@id/v_tab_divider"
- app:layout_constraintTop_toTopOf="parent" />
- <View
- android:id="@+id/v_tab_divider"
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="#32333C"
- app:layout_constraintBottom_toTopOf="@+id/main_tab_layout" />
- <com.google.android.material.tabs.TabLayout
- android:id="@+id/main_tab_layout"
- android:layout_width="match_parent"
- android:layout_height="56dp"
- android:background="@color/colorPrimary"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintDimensionRatio="360:56"
- app:tabIconTint="@android:color/transparent"
- app:tabIndicator="@null" />
- </LinearLayout>
|