<?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".activity.main.BankActivity">
<include layout="@layout/common_title_layout"/>
<RelativeLayout
android:layout_width="346dp"
android:layout_height="90dp"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_gravity="center_horizontal"
android:background="@mipmap/receive_reward">
<TextView
android:id="@+id/bank_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="20dp"
android:text="关卡1 领取奖励10元"
android:textColor="@android:color/white"
android:textSize="18sp" />
</RelativeLayout>
<FrameLayout
android:id="@+id/bank_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
</LinearLayout>
|