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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
| <?xml version="1.0" encoding="utf-8"?> <RelativeLayout 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" tools:context=".MainActivity" >
<ImageView android:id="@+id/iv" android:layout_width="70dp" android:layout_height="70dp" android:layout_centerHorizontal="true" android:layout_margin="40dp" android:background="@drawable/head"/>
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_below="@id/iv" android:layout_centerHorizontal="true" android:layout_marginBottom="5dp" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:layout_marginTop="15dp" android:orientation="vertical">
<EditText android:id="@+id/et1" android:layout_width="match_parent" android:layout_height="wrap_content" android:padding="10dp" android:ems="10" android:hint="QQ号/手机号/邮箱" android:inputType="textPersonName" android:textColor="#615C5C" android:textColorHint="#FFC4BABA" android:textSize="18sp"/>
<EditText android:id="@+id/et2" android:layout_width="match_parent" android:layout_height="wrap_content" android:padding="10dp" android:ems="10" android:hint="密码" android:inputType="textPassword" android:selectAllOnFocus="false" android:singleLine="false" android:textColor="#FFC4BABA" android:textColorHint="#FFC4BABA"/>
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal">
<Button android:id="@+id/bt1" android:layout_width="0dp" android:layout_weight="1" android:layout_height="wrap_content" android:layout_marginTop="50dp" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:text="登录" />
<Button android:id="@+id/bt2" android:layout_width="0dp" android:layout_weight="1" android:layout_height="wrap_content" android:layout_marginTop="50dp" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:text="新用户注册" /> </LinearLayout>
</LinearLayout>
</RelativeLayout>
|