Android Studio连接SQLite数据库的登录注册实现

 更新时间:2020年06月12日 15:14:27   作者:星汉翠竹  
这篇文章主要介绍了Android Studio连接SQLite数据库的登录注册实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

1、先看一下项目目录:


2、新建一个AS项目,创建如上图所示的目录结构,然后添加内容:

(1)修改添加布局文件:

activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
  tools:context=".LoginActivity">

<LinearLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">
  <TextView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:gravity="center"
    android:text="欢迎进入登录界面!"
    android:textSize="30dp"
    android:textStyle="bold" />

  <TableLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:stretchColumns="1" >

    <TableRow>

      <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="用户名:" />

      <EditText
        android:id="@+id/username"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="请输入用户名!!!" />
    </TableRow>

    <TableRow>

      <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="密码:" />

      <EditText
        android:id="@+id/password"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="请输入密码!!!" />
    </TableRow>

    <TableRow>

      <TextView />

      <LinearLayout>

        <Button
          android:id="@+id/login"
          android:layout_width="100dp"
          android:layout_height="wrap_content"
          android:text="登录" />

        <Button
          android:id="@+id/register"
          android:layout_width="100dp"
          android:layout_height="wrap_content"
          android:text="注册" />
      </LinearLayout>
    </TableRow>
  </TableLayout>
</LinearLayout>
</android.support.constraint.ConstraintLayout>

activity_register.xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"
  tools:context=".RegisterActivity">
<LinearLayout
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical">
  <TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:gravity="center"
    android:text="欢迎进入注册界面!"
    android:textSize="30dp"
    android:textStyle="bold" />

  <TableLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:stretchColumns="1" >

    <TableRow >

      <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="用户名:" />

      <EditText
        android:id="@+id/usernameRegister"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="请输入用户名!!!" />
    </TableRow>

    <TableRow >

      <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="密码:" />

      <EditText
        android:id="@+id/passwordRegister"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="请输入密码!!!" />
    </TableRow>

    <TableRow >

      <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="年龄:" />

      <EditText
        android:id="@+id/ageRegister"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="请输入年龄!!!" />
    </TableRow>

    <TableRow >

      <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="性别:"
        android:textSize="20dp" />

      <RadioGroup
        android:id="@+id/sexRegister"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:checkedButton="@+id/woman"
        android:orientation="horizontal" >

        <RadioButton
          android:id="@+id/nan"
          android:text="男"
          android:layout_height="wrap_content"
          android:layout_width="wrap_content" />

        <RadioButton
          android:id="@id/woman"
          android:text="女"
          android:layout_height="wrap_content"
          android:layout_width="wrap_content"/>
      </RadioGroup>
    </TableRow>

    <TableRow >

      <TextView />

      <LinearLayout >
        <Button
          android:id="@+id/Register"
          android:layout_width="150dp"
          android:layout_height="wrap_content"
          android:text="注册" />
      </LinearLayout>
    </TableRow>
  </TableLayout>

</LinearLayout>
</android.support.constraint.ConstraintLayout>

(2)在service包DatabaseHelper中添加链接AS自带数据库以及创建表的语句:

package com.example.sqlitelogin.service;

import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteDatabase.CursorFactory;
import android.database.sqlite.SQLiteOpenHelper;

public class DatabaseHelper extends SQLiteOpenHelper {
	static String name="user.db";
	static int dbVersion=1;
	public DatabaseHelper(Context context) {
		super(context, name, null, dbVersion);
	}

	public void onCreate(SQLiteDatabase db) {
		String sql="create table user(id integer primary key autoincrement,username varchar(20),password varchar(20),age integer,sex varchar(2))";
		db.execSQL(sql);
	}
	public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {

	}

}

(3)在service包UserService中用sql语句写登录注册功能的实现:

package com.example.sqlitelogin.service;

import android.content.Context;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;

import com.example.sqlitelogin.User;


public class UserService {
	private DatabaseHelper dbHelper;
	public UserService(Context context){
		dbHelper=new DatabaseHelper(context);
	}

	public boolean login(String username,String password){
		SQLiteDatabase sdb=dbHelper.getReadableDatabase();
		String sql="select * from user where username=? and password=?";
		Cursor cursor=sdb.rawQuery(sql, new String[]{username,password});		
		if(cursor.moveToFirst()==true){
			cursor.close();
			return true;
		}
		return false;
	}
	public boolean register(User user){
		SQLiteDatabase sdb=dbHelper.getReadableDatabase();
		String sql="insert into user(username,password,age,sex) values(?,?,?,?)";
		Object obj[]={user.getUsername(),user.getPassword(),user.getAge(),user.getSex()};
		sdb.execSQL(sql, obj);	
		return true;
	}
}

(4)在User文件中声明要用到的表列名的变量,并对其添加get&&set方法:

package com.example.sqlitelogin;

import java.io.Serializable;

public class User implements Serializable{
  private int id;
  private String username;
  private String password;
  private int age;
  private String sex;
  public User() {
    super();
    // TODO Auto-generated constructor stub
  }
  public User(String username, String password, int age, String sex) {
    super();
    this.username = username;
    this.password = password;
    this.age = age;
    this.sex = sex;
  }
  public int getId() {
    return id;
  }
  public void setId(int id) {
    this.id = id;
  }
  public String getUsername() {
    return username;
  }
  public void setUsername(String username) {
    this.username = username;
  }
  public String getPassword() {
    return password;
  }
  public void setPassword(String password) {
    this.password = password;
  }
  public int getAge() {
    return age;
  }
  public void setAge(int age) {
    this.age = age;
  }
  public String getSex() {
    return sex;
  }
  public void setSex(String sex) {
    this.sex = sex;
  }
  @Override
  public String toString() {
    return "User [id=" + id + ", username=" + username + ", password="
        + password + ", age=" + age + ", sex=" + sex + "]";
  }

}

(5)为注册功能添加activity组件:

package com.example.sqlitelogin;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;

import com.example.sqlitelogin.service.UserService;

public class RegisterActivity extends AppCompatActivity {

  EditText username;
  EditText password;
  EditText age;
  RadioGroup sex;
  Button register;
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_register);
    findViews();
    register.setOnClickListener(new View.OnClickListener() {
      public void onClick(View v) {
        String name=username.getText().toString().trim();
        String pass=password.getText().toString().trim();
        String agestr=age.getText().toString().trim();
        String sexstr=((RadioButton)RegisterActivity.this.findViewById(sex.getCheckedRadioButtonId())).getText().toString();
        Log.i("TAG",name+"_"+pass+"_"+agestr+"_"+sexstr);
        UserService uService=new UserService(RegisterActivity.this);
        User user=new User();
        user.setUsername(name);
        user.setPassword(pass);
        user.setAge(Integer.parseInt(agestr));
        user.setSex(sexstr);
        uService.register(user);
        Toast.makeText(RegisterActivity.this, "注册成功", Toast.LENGTH_LONG).show();
      }
    });
  }
  private void findViews() {
    username=(EditText) findViewById(R.id.usernameRegister);
    password=(EditText) findViewById(R.id.passwordRegister);
    age=(EditText) findViewById(R.id.ageRegister);
    sex=(RadioGroup) findViewById(R.id.sexRegister);
    register=(Button) findViewById(R.id.Register);
  }

}

(6)为登录功能添加activity组件:

package com.example.sqlitelogin;

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

import com.example.sqlitelogin.service.UserService;

public class LoginActivity extends AppCompatActivity {

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);//即activity_login.xml
    findViews();
  }
  private EditText username;
  private EditText password;
  private Button login;
  private Button register;

  private void findViews() {
    username=(EditText) findViewById(R.id.username);
    password=(EditText) findViewById(R.id.password);
    login=(Button) findViewById(R.id.login);
    register=(Button) findViewById(R.id.register);

    login.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        String name=username.getText().toString();
        System.out.println(name);
        String pass=password.getText().toString();
        System.out.println(pass);
        
        Log.i("TAG",name+"_"+pass);
        UserService uService=new UserService(LoginActivity.this);
        boolean flag=uService.login(name, pass);

        if(flag){
          Log.i("TAG","登录成功");
          Toast.makeText(LoginActivity.this, "登录成功", Toast.LENGTH_LONG).show();
          Intent intent = new Intent(LoginActivity.this,RegisterActivity.class);
          startActivity(intent);
        }else{
          Log.i("TAG","登录失败");
          Toast.makeText(LoginActivity.this, "登录失败", Toast.LENGTH_LONG).show();
        }
      }
    });
    register.setOnClickListener(new View.OnClickListener() {
      public void onClick(View v) {
        Intent intent=new Intent(LoginActivity.this,RegisterActivity.class);
        startActivity(intent);
      }
    });
  }
}

3、Androidmanifest.xml清单文件中,程序运行必备的内容一般都已经自动完成添加了。也可以进行修改:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.example.sqlitelogin">


  <application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".RegisterActivity">
      <!--<intent-filter>-->
        <!--<action android:name="android.intent.action.MAIN" />-->

        <!--<category android:name="android.intent.category.LAUNCHER" />-->
      <!--</intent-filter>-->
    </activity>

    <activity android:name=".LoginActivity">
      <intent-filter>
        <action android:name="android.intent.action.MAIN"/>
        <category android:name="android.intent.category.LAUNCHER"/>
      </intent-filter>
    </activity>
    <!--<uses-library android:name="android.test.runner"/>-->
  </application>

</manifest>

4、在模拟器或者真机运行程序,即可!一个连接数据库的登录注册功能已经实现,效果如下:

补:

如果登录、注册的两个布局文件的 Preview 视图标红,将 android.support.constraint.ConstraintLayout 替换为 LinearLayout 即可

源码下载:

点击查看

查看创建的数据库以及插入的表数据:

点击查看

到此这篇关于Android Studio连接SQLite数据库的登录注册实现的文章就介绍到这了,更多相关Android Studio连接SQLite内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • Android onClick按钮单击事件的四种常用写法

    Android onClick按钮单击事件的四种常用写法

    本文主要介绍了Android onClick按钮单击事件的四种常用写法,具有很好的参考价值。下面跟着小编一起来看下吧
    2017-03-03
  • Android 系统net和wap接入点的区别

    Android 系统net和wap接入点的区别

    这篇文章主要介绍了Android 系统net和wap接入点的区别的相关资料,需要的朋友可以参考下
    2016-09-09
  • Android fragment实现多个页面切换效果

    Android fragment实现多个页面切换效果

    这篇文章主要为大家详细介绍了fragment实现多个页面切换效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2018-04-04
  • Android中NavigationView的使用与相关问题解决

    Android中NavigationView的使用与相关问题解决

    大家都知道NavigationView的引入让 Android侧边栏实现起来相当方便,最近公司项目中也使用这个新的控件完成了侧边栏的改版。在使用过程中遇到一些问题所以记录一下。本文分为两个部分,一是基本使用,二是相关问题的解决,感兴趣的朋友们下面来一起看看吧。
    2016-10-10
  • Android底部菜单简单应用

    Android底部菜单简单应用

    这篇文章主要为大家详细介绍了Android底部菜单简单应用,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-02-02
  • 浅谈Android应用的内存优化及Handler的内存泄漏问题

    浅谈Android应用的内存优化及Handler的内存泄漏问题

    这篇文章主要介绍了Android应用的内存优化及Handler的内存泄漏问题,文中对Activity无法被回收而造成的内存泄漏给出了通常的解决方案,需要的朋友可以参考下
    2016-02-02
  • Android使用surfaceView自定义抽奖大转盘

    Android使用surfaceView自定义抽奖大转盘

    这篇文章主要为大家详细介绍了Android使用surfaceView自定义抽奖大转盘,熟练掌握SurfaceVie实现抽奖大转盘,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-12-12
  • Android 嵌套 Intent 隐患及解决方案

    Android 嵌套 Intent 隐患及解决方案

    这篇文章主要介绍了Android嵌套Intent隐患及解决方案,文章围绕主题展开详细的内容介绍,具有一定的参考价值需要的小伙伴可以参考一下
    2022-05-05
  • Android-Jetpack-Navigation组件使用示例

    Android-Jetpack-Navigation组件使用示例

    这篇文章主要介绍了Android-Jetpack-Navigation组件使用示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2023-08-08
  • 浅析Android手机卫士关闭自动更新

    浅析Android手机卫士关闭自动更新

    保存数据的四种方式,网络,广播提供者,SharedPreferences,数据库。接下来通过本文给大家介绍android手机卫士关闭自动更新的相关知识,感兴趣的朋友一起学习吧
    2016-04-04

最新评论