Android SQLite数据库连接实现登录功能

作者:Red&&Black 时间:2022-09-04 01:51:46 

本文实例为大家分享了Android SQLite数据库连接实现登录功能的具体代码,供大家参考,具体内容如下

布局文件

border.xml


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

<!--  布局的背景颜色-->
<!--  <solid android:color="#FFFFFF" />-->

<!--  边框线的粗细和颜色-->
 <stroke
     android:width="0.01dp"
     android:color="#000" />

<padding
     android:bottom="5dp"
     android:left="5dp"
     android:right="5dp"
     android:top="5dp" />

<!--  圆角-->
 <corners android:radius="5dp" />

</shape>

<?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=".MainActivity">
<LinearLayout

android:padding="5dp"
       android:background="@drawable/border"
       android:orientation="vertical"
       android:layout_gravity="center_horizontal"
       android:layout_width="360dp"
       android:layout_height="112dp">

<LinearLayout

android:orientation="horizontal"
         android:layout_gravity="center_horizontal"
         android:layout_width="match_parent"
         android:layout_height="50dp">

<ImageView
           android:layout_marginRight="15dp"
           android:layout_gravity="center_vertical"
           android:layout_width="30dp"
           android:layout_height="30dp" app:srcCompat="@drawable/usn" android:id="@+id/usn"/>

<!-- android:background="@null" 去掉下划线        -->
       <EditText
           android:singleLine="true"
           android:background="@null"
           android:layout_width="match_parent"
           android:layout_height="match_parent"
           android:inputType="text"
           android:hint="用户名"
           android:ems="10"
           android:id="@+id/username"/>
     </LinearLayout>

<!-- 水平线-->
     <View
         android:layout_height="0.5dip"
         android:background="#686868"
         android:layout_width="match_parent"/>
     <LinearLayout

android:orientation="horizontal"
         android:layout_gravity="center_horizontal"
         android:layout_width="match_parent"
         android:layout_height="50dp">

<ImageView
           android:layout_marginRight="15dp"
           android:layout_gravity="center_vertical"
           android:layout_width="30dp"
           android:layout_height="30dp" app:srcCompat="@drawable/pwd" android:id="@+id/密码"/>
       <EditText
           android:singleLine="true"
           android:background="@null"
           android:layout_width="match_parent"
           android:layout_height="match_parent"
           android:inputType="textPassword"
           android:hint="密码"
           android:ems="10"
           android:id="@+id/password"/>
     </LinearLayout>

</LinearLayout>

<Button
       android:layout_gravity="center_horizontal"
       android:background="#EF8D89"
       android:layout_marginTop="20dp"
       android:text="登  录"
       android:onClick="userLogin"
       android:layout_width="360dp"
       android:layout_height="wrap_content" android:id="@+id/login"/>

</android.support.constraint.ConstraintLayout>

MainActivity类


public class MainActivity extends AppCompatActivity implements View.OnClickListener{
 //访问数据库的类
 SQLiteDatabase db;

//定义常量,作为消息的key
 public final static String MESSAGE_KEY="com.android2";

@Override
 protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

/**
    * (参数)1、context MainActivity
    * 2、name 数据库名
    * 3、
    * 4、版本号
    */
   final DatabaseHelper databaseHelper = new DatabaseHelper(this,"emis.db",null,2);

//获得读取数据库权限
   db = databaseHelper.getReadableDatabase();
   setContentView(R.layout.activity_main);
 }
 /*响应*/
 private void userLogin() {
   EditText et1 = findViewById(R.id.username);
   String username = et1.getText().toString();
   EditText et2 = findViewById(R.id.password);
   String password = et2.getText().toString();

//游标类Cursor 负责生成读写数据库的对象
   Cursor cursor = db.rawQuery("SELECT * FROM users WHERE username=? AND password=?",new String[]{username,password});

//数据库中有此数据,登录成功
   if(cursor.getCount()>0){
     Intent intent = new Intent(this,ReceiveActivity.class);
     intent.putExtra(MESSAGE_KEY,username);
     startActivity(intent);
   }
   else{
     Toast.makeText(MainActivity.this,"用户名或密码错误!",Toast.LENGTH_SHORT).show();
   }

}
}

ReceiveActivity类及布局


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
   xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:tools="http://schemas.android.com/tools"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".ReceiveActivity"

>

<TextView
     android:textSize="24dp"
     android:layout_gravity="center_vertical"
     android:id="@+id/output"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     />
</LinearLayout>

package com.android02;

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.TextView;

public class ReceiveActivity extends AppCompatActivity {

@Override
 protected void onCreate(Bundle savedInstanceState) {
   super.onCreate(savedInstanceState);
   setContentView(R.layout.activity_receive);

//获取intent引用
   Intent intent = getIntent();

//以MESSAGE_KEY获取获取编辑框文字
   String message = intent.getStringExtra(MainActivity.MESSAGE_KEY);

//以id获取TextView
   TextView textView = findViewById(R.id.output);

//显示message
   textView.setText("欢迎!"+message);

}
}

测试:

Android SQLite数据库连接实现登录功能

Android SQLite数据库连接实现登录功能

来源:https://blog.csdn.net/m0_46267375/article/details/109003433

标签:Android,SQLite,登录
0
投稿

猜你喜欢

  • Spring整合mybatis实现过程详解

    2022-05-23 02:10:23
  • Android编程设计模式之状态模式详解

    2021-06-12 15:26:28
  • C#将指定目录所有文件名转换成小写的方法

    2023-01-25 23:21:03
  • java多态的向上转型的概念及实例分析

    2023-06-12 08:30:35
  • Java8新特性之类型注解_动力节点Java学院整理

    2023-10-10 16:13:07
  • Android中实现下载和解压zip文件功能代码分享

    2022-05-31 04:47:26
  • C#读取写入文件的3种方式示例代码

    2022-09-15 06:57:38
  • C#集合本质之队列的用法详解

    2023-03-17 06:42:38
  • spreadsheetgear插件屏蔽鼠标右键的方法

    2022-06-21 14:04:18
  • Java中避免过多if-else的几种方法

    2023-11-28 13:07:09
  • Springboot 在普通类型注入Service或mapper

    2023-11-29 15:26:21
  • checkpoint 机制具体实现示例详解

    2023-03-31 21:42:01
  • JavaFX Metro UI 和 开发库使用简介

    2021-12-11 19:01:39
  • Java 使用 FFmpeg 处理视频文件示例代码详解

    2023-03-19 00:54:37
  • 基于Java实现双向链表

    2022-11-17 11:39:16
  • C#序列化成XML注意细节

    2023-04-20 01:07:00
  • java项目中的绝对路径和相对路径用法说明

    2023-11-27 22:08:44
  • SpringBoot实现PPT格式文件上传并在线预览功能

    2023-07-22 14:44:56
  • WinForm通过操作注册表实现限制软件使用次数的方法

    2023-07-27 15:39:57
  • Java 继承与多态的深入理解

    2023-10-05 04:25:41
  • asp之家 软件编程 m.aspxhome.com