2.1.2登錄界面設計
階段代碼:https://gitee.com/wupicheng/BestBall.git
Initial commit

登錄界面的布局文件 activity_login 的代碼
```
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical"
android:layout_height="match_parent"
tools:context=".LoginActivity">
<ImageView
android:layout_marginTop="100dp"
android:layout_marginLeft="130dp"
android:src="@drawable/logo2"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<EditText
android:drawableLeft="@drawable/icon_account"
android:hint="賬號"
android:textSize="18sp"
android:layout_marginTop="60dp"
android:layout_marginLeft="80dp"
android:layout_marginRight="80dp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:drawableLeft="@drawable/icon_password"
android:hint="密碼"
android:textSize="18sp"
android:layout_marginTop="5dp"
android:layout_marginLeft="80dp"
android:layout_marginRight="80dp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_marginTop="5dp"
android:layout_marginLeft="80dp"
android:layout_marginRight="80dp"
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_height="wrap_content">
<TextView
android:textColor="#BF00BF"
android:textAlignment="center"
android:text="@string/text_register"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content" />
<TextView
android:textColor="#BF00BF"
android:textAlignment="center"
android:text="@string/text_forgot"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
```