45 lines
1.8 KiB
XML
45 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout 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"
|
|
tools:context=".fragment.subject.SubjectFragment">
|
|
|
|
<data>
|
|
|
|
</data>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<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="500dp"
|
|
android:layout_height="24dp"
|
|
android:layout_marginStart="8dp"
|
|
android:layout_marginTop="2dp"
|
|
android:layout_marginEnd="32dp"
|
|
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_indicator_width_equal_title="true"
|
|
app:tl_tab_space_equal="false"
|
|
app:tl_textBold="SELECT"
|
|
app:tl_textSelectSize="13sp"
|
|
app:tl_textSize="11sp"
|
|
app:tl_textUnSelectSize="11sp" />
|
|
|
|
<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>
|
|
</layout> |