登录布局页面
<?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="com.example.latitudeandlongitude.latitudeandlongitude.MainActivity">
<EditText
android:id="@+id/id"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="78dp"
android:ems="10"
android:inputType="textPersonName"
android:hint="用户名" />
<EditText
android:id="@+id/password"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/id"
android:layout_below="@+id/id"
android:layout_marginTop="28dp"
android:ems="10"
android:inputType="textPassword"
android:hint="密码"/>
<CheckBox
android:id="@+id/check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/password"
android:layout_below="@id/password"
android:text="记住用户名和密码"
/>
<Button
android:id="@+id/register"
android:text="注册"
android:layout_marginTop="30dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/password"
android:layout_alignLeft="@+id/password"/>
<Button
android:id="@+id/login"
android:text="登录"
android:layout_marginTop="30dp"
android:layout_below="@id/password"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@id/password"/>
</LinearLayout>
注册布局页面
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:id="@+id/id_edit"
android:hint="用户名"
android:layout_marginTop="50dp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/password_edit"
android:hint="密码"
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/password_edit_1"
android:hint="确认密码"
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/email_edit"
android:hint="邮箱"
android:layout_below="@+id/password_edit_1"
android:layout_marginTop="10dp"
android:layout_

这篇博客介绍了如何在Android Studio中开发一个简单的注册登录应用,包括登录和注册页面的布局设计,以及后台使用POST方式提交数据的逻辑实现。同时,提供了运行截图和完整的登录注册DEMO下载链接。

1306

被折叠的 条评论
为什么被折叠?



