lmw
2024-06-18 1f45a54dc8e149548d3a61d1228741627aa4f23e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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:layout_height="match_parent"
    android:orientation="vertical">
 
    <com.flyco.tablayout.SlidingTabLayout
        android:id="@+id/tab_top"
        android:layout_width="match_parent"
        android:layout_height="80dp"
        app:tl_indicator_color="@color/colorPrimary"
        app:tl_indicator_corner_radius="2dp"
        app:tl_indicator_height="0dp"
        app:tl_indicator_width="56dp"
        app:tl_textBold="BOTH"
        app:tl_textSelectColor="#6CC366"
        app:tl_textUnselectColor="@color/textColor99"
        app:tl_textsize="18sp" />
 
    <androidx.viewpager.widget.ViewPager
        android:id="@+id/view_pager"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1" />
</LinearLayout>