lmw
2023-06-20 7e4a923b472a1ffb9d6deeb80302551ba4178ca3
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
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    android:layout_height="match_parent">
 
    <com.flyco.tablayout.CommonTabLayout
        android:layout_width="match_parent"
        android:id="@+id/tab_layout"
        app:layout_constraintTop_toTopOf="parent"
        android:elevation="2dp"
        app:tl_textSelectColor="@color/green_main"
        app:tl_textsize="14sp"
        app:tl_tab_space_equal="true"
        android:background="@color/write"
        app:tl_textUnselectColor="@color/textColor66"
        app:tl_textBold="BOTH"
        app:tl_indicator_color="@color/green_main"
        app:tl_indicator_height="2dp"
        app:tl_indicator_width="26dp"
        android:layout_height="44dp"/>
 
    <include layout="@layout/include_line"/>
 
    <RelativeLayout
        android:layout_marginTop="5dp"
        android:id="@+id/rl_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
 
 
</LinearLayout>