<?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>
|