<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical"
|
tools:context=".MainActivity">
|
<include layout="@layout/networktoolbar"/>
|
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
<FrameLayout
|
android:id="@+id/fl_container"
|
android:background="@drawable/ic_bground"
|
android:layout_width="match_parent"
|
android:layout_marginBottom="@dimen/bottombar_height"
|
android:layout_height="match_parent">
|
<Button
|
android:id="@+id/btn_return"
|
android:layout_width="128dp"
|
android:layout_height="48dp"
|
android:background="@mipmap/return_bg"
|
android:drawableLeft="@mipmap/return_pic"
|
android:paddingLeft="20dp"
|
android:text="返回"
|
android:gravity="center_vertical"
|
android:drawablePadding="@dimen/ui_margin_5dp"
|
android:layout_gravity="bottom|end"
|
android:textColor="#FFFFFF"
|
android:textSize="@dimen/network_train_textsize24px" />
|
</FrameLayout>
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|