<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:background="@color/train_bg"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:padding="5dp"
|
android:orientation="vertical">
|
<Button
|
android:layout_width="110dp"
|
android:layout_height="wrap_content"
|
android:text="返回"
|
android:padding="10dp"
|
android:textSize="20sp"
|
android:id="@+id/btn_return"
|
android:textColor="@android:color/white"
|
android:background="@color/train_btn_return"/>
|
<Button
|
android:layout_width="110dp"
|
android:layout_height="wrap_content"
|
android:background="@android:color/holo_red_dark"
|
android:layout_marginTop="10dp"
|
android:textSize="20sp"
|
android:layout_below="@+id/btn_return"
|
android:padding="10dp"
|
android:textColor="@android:color/white"
|
android:text="开始训练"/>
|
</RelativeLayout>
|