用户注册
首先我们创建一个新的Activity,将他命名为RegisterActivity
我们还是先设计注册界面布局(根据自身喜好),我这里延用了上一篇透明框布局bg_username、btn_left、btn_right
上一篇我们已经简单介绍了LinearLayout、TextView、EditText功能,这里补充一下Button布局,它决定按钮在界面上的位置和样式。Button控件继承自TextView,因此TextView的所有属性和方法都适用于Button,当然Button也具有一些自己的特性,比如:
- textAllCaps:控制按钮上显示的文本是否全部转为大写。默认情况下,Button的textAllCaps属性为true,即文本会自动转为大写。如果不需要这种效果,可以将该属性设置为false。
- onClick:用于在XML布局文件中直接指定按钮的点击事件处理方法。该属性的值是在Activity中定义的方法名,当按钮被点击时,会自动调用该方法。
<?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:padding="10dp"
android:background="@drawable/background1"
tools:context=".RegisterActivity">
<TextView
android:id="@+id/TV_register"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="150dp"
android:gravity="center"
android:text="用户注册"
android:textColor="#3D3EB1"
android:textSize="18sp" />
<EditText
android:id="@+id/ET_reg1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:textSize="16sp"
android:textColor="@color/colorBlack"
android:hint="用户名"
android:maxLines="1"
android:padding="5dp"
android:background="@drawable/bg_username"
android:layout_marginTop="30dp"
/>
<EditText
android:id="@+id/ET_reg2"
android:layout_width="match_parent"
android:layout_height="50dp"
android:textSize="16sp"
android:textColor="@color/colorBlack"
android:hint="密码"
android:maxLines="1"
android:padding="5dp"
android:inputType="textPassword"
android:background="@drawable/bg_username"
android:layout_marginTop="20dp"
/>
<EditText
android:id="@+id/ET_reg3"
android:layout_width="match_parent"
android:layout_height="50dp"
android:textSize="16sp"
android:textColor="@color/colorBlack"
android:hint="确认密码"
android:maxLines="1"
android:padding="5dp"
android:inputType="textPassword"
android:background="@drawable/bg_username"
android:layout_marginTop="20dp"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="20dp"
>
<Button
android:id="@+id/btn_reg1"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="注册"
android:layout_gravity="center"
android:background="@drawable/btn_left"
/>
<Button
android:id="@+id/btn_reg2"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="取消"
android:layout_marginLeft="4dp"
android:layout_gravity="center"
android:background="@drawable/btn_right"
/>
</LinearLayout>
</LinearLayout>
这样我们就得到了一个注册界面,是不是很简单 ! (这里建议自己全部敲一遍熟悉,可以根据喜好设计不同布局)预览如下:
数据库应用
在Android应用中,使用数据库(如SQLite)来存储用户注册信息是一种非常常见的做法。用户注册的信息需要被持久化存储,以便在用户下次打开应用时能够重新加载这些信息,SQLite数据库正是一个轻量级且适合在Android设备上存储数据的解决方案。
为了将注册界面RegisterActivity与SQLite数据库连接起来,我们需要确保在注册界面中调用我们自定义SQLite类的实例,并使用它来添加用户数据到数据库中。
那么,我们首先需要一个User类(为了清晰,这里新建一个SQL包来存储数据库相关,建议大家和我一样,不要将所有函数堆到一起,不然在做大工程时会非常混乱)
我们确定User变量,利用Generate自动生成构造函数,Get、Set函数,记得勾选参数(学过java的朋友应该对这个操作非常熟悉,当然如果没有Java基础的话可以自己敲一遍熟悉)
好的,这样我们已经完成了数据信息基础操作。接下来还是在SQL包中,我们建立SQLite类,实现对数据库的操作。
通过调用父类SQLiteOpenHelper构造函数来初始化数据库帮助器。这里指定了数据库的名称为User_message,并且数据库的版本号为1。然后,通过调用getReadableDatabase()方法获取一个可读写的数据库连接对象db,这个对象会被用于后续的数据库操作。
创建一个名为reg_user的表,表中包含三个字段:_id(自增的主键)、name(文本类型)、password(文本类型)。SQLite中TEXT类型对应java的String类型
当数据库版本升级时,调用此方法。这里首先删除旧的reg_user(如果存在),然后调用OnCreate方法来重新创建表。这是一种简单的数据库迁移策略,适用于表结构发生较大变化的情况。
向reg_user表中插入一条新的记录。这里使用了预处理语句(?作为占位符),可以提高SQL语句的安全性和灵活性。
查询reg_user表中的所有记录,并将结果封装到一个ArrayList<User>列表中返回。这里使用query方法来执行查询操作,并通过Cursor对象遍历查询结果。(使用try-finally语句来确保游标(Cursor)在查询完成后被正确关闭,无论是否发生异常。)
这样我们就完成了一个数据库的简单创建,包括对表的查询。
注册功能实现
在 RegisterActivity.java 中,我们还是先声明控件,找到想要的控件后再为他添加功能
进行注册时,我们知道首先要确定我们设置的变量,用户名、密码、二次密码确认,首先检查用户名和密码是否为空,如果任何一个为空,则不会执行注册逻辑。然后,比较用户输入的密码和确认密码是否一致。如果不一致,同样不会执行注册逻辑。当用户名不为空、密码不为空且两次输入的密码一致,那么执行注册逻辑,这里我们调用 SQLite 类中自定义的add方法。
OK,一个简单的注册界面就结束啦!当然大家还可以扩展更多功能来完善它,比如验证码,判断是否该用户已经注册等等。
登录(进阶)
上篇文章简单使用了自设置用户名和密码来登录,那么这次我们使用刚刚注册的账号来进行登录。第一步我们还是先声明控件并找到他,方法与之前一样,这里就不展示了。同样,我们需要为按钮添加点击功能,这里重点讲登录按键。
我们使用 TextUtils.isEmpty() 方法检查用户名和密码是否都不为空,如果任何一个为空,则显示一个提示框告知用户“用户名或密码不能为空”,并结束方法执行。
如果用户名和密码都不为空,调用 SQLite 类中 getAllDATA() 方法从数据库中获取所有用户的数据。
然后我们通过一个循环遍历所有用户数据。对于每个用户,检查当前循环中的用户名和密码是否与输入的用户名和密码相匹配。
如果找到匹配的用户,则将 userdata 设置为 true 并跳出循环。如果循环结束后没有找到匹配项,userdata 将保持为 false 。
结束 !我们来看一下真机模拟效果。
注册界面
注册功能
注册账户为:mk,密码为:123 登录效果如下:
这样,简单的用户注册登录就实现啦!(有不妥之处还请指出,谢谢)
完整代码
MainActivity.java
package com.example.login;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import com.example.login.R;
import com.example.login.SQL.SQLite;
import com.example.login.SQL.User;
import java.util.ArrayList;
public class MainActivity extends AppCompatActivity {
private SQLite mSQlite;
private EditText username;
private EditText userpassword;
private Button login;
private Button register;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 初始化
mSQlite = new SQLite(MainActivity.this);
login = findViewById(R.id.btn_login);
register = findViewById(R.id.btn_register);
username = findViewById(R.id.ET_userName);
userpassword = findViewById(R.id.ET_password);
register.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(MainActivity.this, RegisterActivity.class);
startActivity(intent);
finish();
}
});
login.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String name = username.getText().toString().trim();
String password = userpassword.getText().toString().trim();
if (!TextUtils.isEmpty(name) && !TextUtils.isEmpty(password)) {
ArrayList<User> data = mSQlite.getAllDATA();
boolean userdata = false;
for (int i = 0; i < data.size(); i++) {
User user= data.get(i); //可存储账号数量
if (name.equals(user.getName()) && password.equals(user.getPassword())) {
userdata = true;
break;
}
}
if (userdata) {
Toast.makeText(MainActivity.this, "登录成功", Toast.LENGTH_SHORT).show();
Intent intent1 = new Intent(MainActivity.this, dataActivity.class);
startActivity(intent1);
finish();
} else {
Toast.makeText(MainActivity.this, "用户名或密码不正确", Toast.LENGTH_SHORT).show();
}
} else {
Toast.makeText(MainActivity.this, "用户名或密码不能为空", Toast.LENGTH_SHORT).show();
}
}
});
}
}
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"
android:padding="10dp"
android:background="@drawable/background1"
tools:context=".MainActivity">
<TextView
android:id="@+id/TV_title"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="100dp"
android:gravity="center"
android:text="明空"
android:textColor="#090808"
android:textSize="18sp" />
<EditText
android:id="@+id/ET_userName"
android:layout_width="match_parent"
android:layout_height="50dp"
android:textSize="16sp"
android:hint="用户名"
android:textColor="#000000"
android:maxLines="1"
android:padding="5dp"
android:background="@drawable/bg_username"
android:layout_marginTop="30dp"
/>
<EditText
android:id="@+id/ET_password"
android:layout_width="match_parent"
android:layout_height="50dp"
android:textSize="16sp"
android:textColor="#000000"
android:hint="密码"
android:maxLines="1"
android:padding="5dp"
android:inputType="textPassword"
android:background="@drawable/bg_username"
android:layout_marginTop="20dp"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="20dp"
>
<Button
android:id="@+id/btn_login"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="登录"
android:textColor="#000000"
android:layout_gravity="center"
android:background="@drawable/btn_left"
/>
<Button
android:id="@+id/btn_register"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="注册"
android:textColor="#000000"
android:layout_marginLeft="4dp"
android:layout_gravity="center"
android:background="@drawable/btn_right"
/>
</LinearLayout>
</LinearLayout>
RegisterActivity.java
package com.example.login;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import com.example.login.SQL.SQLite;
public class RegisterActivity extends AppCompatActivity {
private SQLite sqLite;
private EditText userName; // 用户名
private EditText userPassword; // 密码
private EditText againPassword; // 确认密码是否一致
private Button cancel; // 取消
private Button reg; // 注册
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_register);
sqLite = new SQLite(RegisterActivity.this);
userName = findViewById(R.id.ET_reg1);
userPassword = findViewById( R.id.ET_reg2);
againPassword = findViewById(R.id.ET_reg3);
reg=findViewById(R.id.btn_reg1);
cancel=findViewById(R.id.btn_reg2);
cancel.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(RegisterActivity.this,MainActivity.class);
startActivity(intent);
finish();
}
});
reg.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String name = userName.getText().toString().trim();
String password = userPassword.getText().toString().trim();
String aPassword = againPassword.getText().toString().trim();
if(!TextUtils.isEmpty(name)&&!TextUtils.isEmpty(password)){
if (password.equals(aPassword))
{
sqLite.add(name,password);
Intent intent1 = new Intent(RegisterActivity.this, MainActivity.class);
startActivity(intent1);
finish();
Toast.makeText(RegisterActivity.this,"注册成功",Toast.LENGTH_SHORT).show();
}else {
Toast.makeText(RegisterActivity.this, "两次输入的密码不一致,请重新输入", Toast.LENGTH_SHORT).show();
}
}else {
Toast.makeText(RegisterActivity.this,"信息不完备,注册失败",Toast.LENGTH_SHORT).show();
}
}
});
}
}
activity_register.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"
android:padding="10dp"
android:background="@drawable/background1"
tools:context=".RegisterActivity">
<TextView
android:id="@+id/TV_register"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="150dp"
android:gravity="center"
android:text="用户注册"
android:textColor="#3D3EB1"
android:textSize="18sp" />
<EditText
android:id="@+id/ET_reg1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:textSize="16sp"
android:textColor="@color/colorBlack"
android:hint="用户名"
android:maxLines="1"
android:padding="5dp"
android:background="@drawable/bg_username"
android:layout_marginTop="30dp"
/>
<EditText
android:id="@+id/ET_reg2"
android:layout_width="match_parent"
android:layout_height="50dp"
android:textSize="16sp"
android:textColor="@color/colorBlack"
android:hint="密码"
android:maxLines="1"
android:padding="5dp"
android:inputType="textPassword"
android:background="@drawable/bg_username"
android:layout_marginTop="20dp"
/>
<EditText
android:id="@+id/ET_reg3"
android:layout_width="match_parent"
android:layout_height="50dp"
android:textSize="16sp"
android:textColor="@color/colorBlack"
android:hint="确认密码"
android:maxLines="1"
android:padding="5dp"
android:inputType="textPassword"
android:background="@drawable/bg_username"
android:layout_marginTop="20dp"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="20dp"
>
<Button
android:id="@+id/btn_reg1"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="注册"
android:layout_gravity="center"
android:background="@drawable/btn_left"
/>
<Button
android:id="@+id/btn_reg2"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="取消"
android:layout_marginLeft="4dp"
android:layout_gravity="center"
android:background="@drawable/btn_right"
/>
</LinearLayout>
</LinearLayout>
SQLite.java
package com.example.login.SQL;
import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import java.util.ArrayList;
public class SQLite extends SQLiteOpenHelper {
private SQLiteDatabase db;
public SQLite(Context context) {
super(context, "User_message", null, 1);
db = getReadableDatabase();
}
@Override
public void onCreate(SQLiteDatabase db) {
db.execSQL("CREATE TABLE IF NOT EXISTS reg_user(" +
"_id INTEGER PRIMARY KEY AUTOINCREMENT," +
"name TEXT," +
"password TEXT)");
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("DROP TABLE IF EXISTS reg_user");
onCreate(db);
}
public void add(String name,String password ){
db.execSQL("INSERT INTO reg_user(name,password)VALUES(?,?)",new Object[]{name,password});
}
public ArrayList<User> getAllDATA() {
ArrayList<User> list = new ArrayList<>();
Cursor cursor = db.query("reg_user", null, null, null, null, null, null);
try {
while (cursor.moveToNext()) {
int id = cursor.getInt(cursor.getColumnIndex("_id")); // 注意这里使用 _id
String name = cursor.getString(cursor.getColumnIndex("name"));
String password = cursor.getString(cursor.getColumnIndex("password"));
User user = new User(id, name, password); // 使用包含三个参数的构造函数
list.add(user);
}
} finally {
cursor.close();
}
return list;
}
}
User.java
package com.example.login.SQL;
public class User {
private int id; // 存储用户的唯一ID
private String name; // 用户名
private String password; // 密码
public User() {
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public User(int id, String name, String password) {
this.id = id;
this.name = name;
this.password = password;
}
}
具体目录位置+部分布局代码
(drawable包中可以再创建新包将xml和背景图片分开存放,这样更加清晰)
这里附上上一篇提到的三个布局函数具体代码,方便大家直接用(上一篇中已经图片给出)
bg_username
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke
android:width="1dp"
android:color="#000000"
/>
<corners
android:radius="10dp"
/>
</shape>
btn_left
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke
android:width="1dp"
android:color="#000000"
/>
<corners
android:topLeftRadius="5dp"
android:bottomLeftRadius="5dp"
/>
</shape>
btn_right
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<stroke
android:width="1dp"
android:color="#000000"
/>
<corners
android:topRightRadius="5dp"
android:bottomRightRadius="5dp"
/>
</shape>
标签:存储,name,public,Studio,import,Android,password,id,android
From: https://blog.csdn.net/m0_74325713/article/details/140764724