项目目录:
首先对页面做一个简单的布局
activity_main.xml代码如下:
<?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"
tools:context=".MainActivity">
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/et_username"
android:hint="请输入账号"/>
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/et_password"
android:hint="请输入密码"/>
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/et_uppassword"
android:hint="请输入修改后的密码"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/btn_login"
android:text="登录"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/btn_regist"
android:text="注册"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/btn_update"
android:text=