lizhanwei
2020-04-22 dfd4367d5c4a64743b2a842602a94578b993fdde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?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>