You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.6 KiB
47 lines
1.6 KiB
<?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:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
tools:context=".MainActivity">
|
|
|
|
|
|
<TextView
|
|
android:layout_width="400dp"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@android:color/black"
|
|
android:textSize="30sp"
|
|
android:gravity="center"
|
|
android:text = "淘宝登录"/>
|
|
<EditText
|
|
android:layout_marginTop="10dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:hint="请输入账号"
|
|
android:textColor="@android:color/darker_gray"
|
|
android:inputType="numberPassword"/>
|
|
<EditText
|
|
android:layout_marginTop="10dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:hint="请输入密码"
|
|
android:textColor="@android:color/darker_gray"
|
|
android:inputType="numberPassword"/>
|
|
|
|
<Button
|
|
android:id="@+id/button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="登录"
|
|
/>
|
|
|
|
<!-- <Button-->
|
|
<!-- android:id="@+id/button2"-->
|
|
<!-- android:layout_width="match_parent"-->
|
|
<!-- android:layout_height="wrap_content"-->
|
|
<!-- android:text="注册"-->
|
|
<!-- android:textSize="30sp"/>-->
|
|
</LinearLayout> |