You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<?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"
|
|
android:gravity="center"
|
|
android:padding="10dp"
|
|
>
|
|
<LinearLayout
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="5dp">
|
|
|
|
<EditText
|
|
android:id="@+id/et_username"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/edit_bg"
|
|
android:hint="用户名"
|
|
android:drawablePadding="15dp"
|
|
android:singleLine="true" />
|
|
<EditText
|
|
android:id="@+id/et_password"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/edit_bg"
|
|
android:drawablePadding="15dp"
|
|
android:hint="密码"
|
|
android:singleLine="true" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|