38 lines
1.7 KiB
XML
38 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout 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=".fragment.subject.SubjectFragment">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<com.flyco.tablayout.SlidingTabLayout
|
|
android:id="@+id/main_sliding_tab_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_24"
|
|
android:layout_marginStart="@dimen/dp_8"
|
|
android:layout_marginTop="@dimen/dp_2"
|
|
android:layout_marginEnd="@dimen/dp_32"
|
|
android:visibility="visible"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:tl_indicator_color="#FFFFFF"
|
|
app:tl_indicator_style="NORMAL"
|
|
app:tl_tab_space_equal="true"
|
|
app:tl_indicator_width_equal_title="true"
|
|
app:tl_textBold="SELECT"
|
|
app:tl_textSelectSize="@dimen/sp_13"
|
|
app:tl_textSize="@dimen/sp_11"
|
|
app:tl_textUnSelectSize="@dimen/sp_11" />
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/viewPager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintTop_toBottomOf="@+id/main_sliding_tab_layout" />
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</FrameLayout> |