liugl
2021-01-19 36bc30bdfea6e604a517267e9cabe57b51c322ea
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
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/ll_back"
    android:background="@drawable/bg_slab_main"
    android:orientation="vertical">
 
    <RelativeLayout
        android:id="@+id/rl_top"
        android:layout_width="match_parent"
        android:layout_height="70dp"
        android:layout_marginTop="26dp">
 
        <ImageView
            android:id="@+id/iv_back_slab"
            android:layout_width="84dp"
            android:layout_height="54dp"
            android:layout_centerVertical="true"
            android:paddingStart="26dp"
            android:paddingEnd="26dp"
            android:src="@mipmap/icon_back_slab" />
 
        <TextView
            android:id="@+id/tv_title_slab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="历史活动"
            android:textColor="#ffffffff"
            android:textSize="50sp" />
 
    </RelativeLayout>
 
    <RelativeLayout
        android:id="@+id/rl_container"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
 
 
</LinearLayout>