<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
android:orientation="vertical"
|
android:id="@+id/ll_bg_back"
|
android:background="@drawable/bg_slab_main"
|
android:layout_height="match_parent">
|
|
|
<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_weight="1"
|
android:layout_height="0dp"/>
|
|
<TextView
|
android:id="@+id/tv_history"
|
android:layout_width="match_parent"
|
android:layout_height="64dp"
|
android:layout_alignParentBottom="true"
|
android:layout_marginStart="14dp"
|
android:layout_marginTop="24dp"
|
android:layout_marginEnd="14dp"
|
android:layout_marginBottom="14dp"
|
android:background="@drawable/bg_login"
|
android:gravity="center"
|
android:text="查看历史活动"
|
android:textColor="#ffffffff"
|
android:textSize="40sp" />
|
|
</LinearLayout>
|