haijiang
2018-07-17 63b87b529196c056fb4d96a58eded3936d3445f2
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:fitsSystemWindows="true"
    android:background="@mipmap/bg">
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="@dimen/x180"
        android:layout_marginLeft="@dimen/x20"
        android:layout_marginRight="@dimen/x20"
        android:scaleType="fitCenter"
        android:layout_marginTop="@dimen/x30"
        android:src="@mipmap/login_top"/>
    <EditText
        android:id="@+id/et_phone"
        android:layout_width="match_parent"
        android:layout_height="@dimen/x40"
        android:layout_marginLeft="@dimen/x36"
        android:layout_marginRight="@dimen/x36"
        android:textSize="16sp"
        android:textColor="@color/white"
        android:textColorHint="@color/white"
        android:hint="请输入账号"
        android:gravity="center"
        android:background="@mipmap/button1"/>
    <EditText
        android:id="@+id/et_pwd"
        android:layout_width="match_parent"
        android:layout_height="@dimen/x40"
        android:layout_marginLeft="@dimen/x36"
        android:layout_marginRight="@dimen/x36"
        android:layout_marginTop="@dimen/x30"
        android:inputType="textPassword"
        android:textSize="16sp"
        android:textColor="@color/white"
        android:textColorHint="@color/white"
        android:hint="请输入密码"
        android:gravity="center"
        android:background="@mipmap/button1"/>
    <Button
        android:id="@+id/bt_sure"
        android:layout_width="match_parent"
        android:layout_height="@dimen/x40"
        android:layout_marginLeft="@dimen/x36"
        android:layout_marginRight="@dimen/x36"
        android:layout_marginTop="@dimen/x30"
        android:textSize="16sp"
        android:textColor="@color/white"
        android:text="登录"
        android:gravity="center"
        android:background="@mipmap/button2"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="16sp"
        android:textColor="@color/blue_txt"
        android:text="忘记密码"
        android:gravity="center"
        android:visibility="invisible"
        android:layout_marginTop="@dimen/x60"/>
</LinearLayout>