<?xml version="1.0" encoding="utf-8"?>
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
<com.flyco.tablayout.SlidingTabLayout
|
android:layout_width="match_parent"
|
android:layout_height="44dp"
|
android:id="@+id/tab_type"
|
app:layout_constraintTop_toTopOf="parent"
|
app:tl_textSelectColor="@color/colorPrimary"
|
app:tl_textUnselectColor="@color/textColor99"
|
app:tl_textsize="13sp"
|
app:tl_textBold="BOTH"
|
app:tl_tab_space_equal="true"
|
app:tl_indicator_height="0dp"/>
|
<androidx.viewpager.widget.ViewPager
|
android:layout_width="match_parent"
|
android:layout_height="0dp"
|
android:id="@+id/view_pager"
|
app:layout_constraintTop_toBottomOf="@id/tab_type"
|
app:layout_constraintBottom_toBottomOf="parent"/>
|
</androidx.constraintlayout.widget.ConstraintLayout>
|