49 lines
1.9 KiB
XML
49 lines
1.9 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">
|
|
|
|
<data>
|
|
|
|
</data>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/color_1A000000">
|
|
|
|
<com.example.moduletablayout.SlidingTabLayout
|
|
android:id="@+id/sliding_tab_layout"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
android:background="@color/transparent"
|
|
app:layout_constraintDimensionRatio="335:40"
|
|
android:orientation="horizontal"
|
|
app:tl_indicator_color="@color/color_FFFF80FF"
|
|
app:tl_indicator_corner_radius="2dp"
|
|
app:tl_indicator_height="4dp"
|
|
app:tl_indicator_style="NORMAL"
|
|
app:tl_indicator_width="@dimen/dp_30"
|
|
app:tl_tab_space_equal="true"
|
|
app:tl_textBold="BOTH"
|
|
app:tl_textSelectColor="@color/color_FFFF80FF"
|
|
app:tl_textUnselectColor="@color/color_FFFFFF80"
|
|
app:tl_textsize="14sp" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
<com.xscm.moduleutil.widget.ScrollViewPager
|
|
android:id="@+id/vp_rank_child"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
|
</layout> |