🟧🟨🟩🟦🟪 Android Debug🟧🟨🟩🟦🟪
Topic
发布安卓学习过程中遇到问题解决过程,希望我的解决方案可以对小伙伴们有帮助。
📋笔记目录
💯实战演练--基于SQLite数据库的通讯录实现数据的增删改查
1,创建程序
2,放置界面控件
3,编写界面交互代码
4, 核心方法讲解
5,数据库的创建及初始化
6,运行程序
🚩结尾
💯实战演练--基于SQLite数据库的通讯录实现数据的增删改查
1,创建程序
创建一个名为Directory的应用程序,指定报名为cn.example.directory。
2,放置界面控件
在activity_main.xml布局文件中放置三个TextView控件,分别用于显示"姓名"文本、“电话”文本以及显示保存的姓名和电话信息,两个EditText控件分别用于显示姓名的输入框与电话的输入框,四个Button控件分别用于显示添加按钮、查询按钮、修改按钮以及删除按钮。
<?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"
tools:context=".MainActivity"
android:padding="16dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="130dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="姓 名:"
android:textSize="18sp" />
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/et_name"
android:hint="请输入姓名:"
android:textSize="16sp"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="电 话:"
android:textSize="18sp"/>
<EditText
android:id="@+id/et_phone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="请输入手机号码:"
android:textSize="16sp"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/btn_add"
android:layout_marginRight="2dp"
android:layout_weight="1"
android:background="#B9B9FF"
android:text="添加"
android:textSize="18sp"/>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/btn_query"
android:layout_marginRight="2dp"
android:layout_weight="1"
android:background="#DCB5FF"
android:text="查询"
android:textSize="18sp"/>
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/ben_update"
android:layout_marginRight="2dp"
android:layout_weight="1"
android:background="#E6CAFF"
android:text="修改"
android:textSize="18sp" />
<Button
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/btn_delete"
android:layout_weight="1"
android:background="#ACD6FF"
android:text="删除"
android:textSize="18sp"/>
</LinearLayout>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/tv_show"
android:layout_marginTop="25dp"
android:textSize="20sp"/>
</LinearLayout>
3,编写界面交互代码
在MainActivity中编写逻辑代码,实现联系人信息的添加、查询、修改以及删除功能,由于通讯录界面上的添加、查询、修改、删除按钮需要设置点击事件,因此将MainActivity实现OnClickListener接口,并重写Onclick方法,在该方法中实现这四个按钮的点击事件。
package com.example.directory;
import androidx.appcompat.app.AppCompatActivity;
import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity implements View.OnClickListener {
MyHelper myHelper;
private EditText mEtName;
private EditText mEtphone;
private TextView mTvShow;
private Button mBtnAdd;
private Button mBtnQuery;
private Button mBtnUpdate;
private Button mBtnDelete;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
myHelper = new MyHelper(this);
init();
}
private void init() {
mEtName = findViewById(R.id.et_name);
mEtphone = findViewById(R.id.et_phone);
mTvShow = findViewById(R.id.tv_show);
mBtnAdd = findViewById(R.id.btn_add);
mBtnQuery = findViewById(R.id.btn_query);
mBtnUpdate = findViewById(R.id.ben_update);
mBtnDelete = findViewById(R.id.btn_delete);
mBtnAdd.setOnClickListener(this);
mBtnQuery.setOnClickListener(this);
mBtnUpdate.setOnClickListener(this);
mBtnDelete.setOnClickListener(this);
}
@Override
public void onClick(View v) {
String name,phone;
SQLiteDatabase db;
ContentValues values;
switch (v.getId()){
case R.id.btn_add:
name = mEtName.getText().toString();
phone = mEtphone.getText().toString();
db = myHelper.getWritableDatabase();
values = new ContentValues();
values.put("name",name);
values.put("phone",phone);
db.insert("information",null,values);
Toast.makeText(this,"信息已添加",Toast.LENGTH_SHORT).show();
db.close();
break;
case R.id.btn_query:
db = myHelper.getReadableDatabase();
Cursor cursor = db.query("information",null,null,null,null,null,null);
if (cursor.getCount() == 0){
mTvShow.setText("");
Toast.makeText(this,"没有数据",Toast.LENGTH_SHORT).show();
}else {
cursor.moveToFirst();
mTvShow.setText("Name : " + cursor.getString(1) + " ; Tel : " + cursor.getString(2));
}
while (cursor.moveToNext()){
mTvShow.append("\n" + "Name : " + cursor.getString(1) + " ; Tel : " + cursor.getString(2));
}
cursor.close();
db.close();
break;
case R.id.ben_update:
db = myHelper.getWritableDatabase();
values = new ContentValues();
values.put("phone",phone = mEtphone.getText().toString());
db.update("information",values,"name=?", new String[]{mEtName.getText().toString()});
Toast.makeText(this,"信息已修改",Toast.LENGTH_SHORT).show();
db.close();
break;
case R.id.btn_delete:
db =myHelper.getWritableDatabase();
db.delete("information",null,null);
Toast.makeText(this,"信息已删除",Toast.LENGTH_SHORT).show();
mTvShow.setText("");
db.close();
break;
}
}
}
4, 核心方法讲解
在上述代码中,一开始创建了一个init()方法,用于初始化界面控件并设置添加,查询,修改,删除按钮的点击监听事件。
通过SQLiteDatabase类的insert()方法将姓名和电话信息添加到数据库中。
通过SQLiteDatabase类的query()方法将数据库中的姓名和电话信息查询出来,并显示在界面中。
通过SQLiteDatabase类的update()方法修改数据库中的姓名和电话信息。
通过SQLiteDatabase类的delete()方法删除数据库中的姓名和电话信息。
通过SQLiteDatabase类的execSQL()方法创建表information。
5,数据库的创建及初始化
package com.example.directory;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
import androidx.annotation.Nullable;
class MyHelper extends SQLiteOpenHelper {
public MyHelper(Context context) {
super(context, "incast.db", null, 1);
}
// 数据库第一次被创建时调用该方法
@Override
public void onCreate(SQLiteDatabase db) {
//初始化数据库的表结构,执行一条建表的SQL语句
db.execSQL("CREATE TABLE information(_id INTEGER PRIMARY KEY AUTOINCREMENT,name VARCHAR(20), phone VARCHAR(20))");
}
//当数据库的版本号增加时调用
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
}
}
6,运行程序
运行上述程序:
输入两条联系人信息,点击添加按钮运行,结果如图所示:
点击查询按钮,会发现添加的联系人信息在界面中显示:
重新输入一个人的联系电话,点击修改按钮,然后再进行查询,会发现联系人电话已经修改成功:
点击删除按钮,会将数据库中所有联系人进行删除:
🚩结尾
至此,文件存储的相关知识已讲解完成,该知识所用到的核心技术是利用I/O流来进行文件读写操作,其中,Context类中提供的openFileInput()和OpenFileOutput()方法的用法,一定要掌握。
文章来源:https://www.toymoban.com/news/detail-481598.html
🎁欢迎各位→点赞👍 + 收藏⭐️ + 留言📝
🌈写给读者:很高兴你能看到我的文章,希望我的文章可以帮助到你,祝万事顺意🏳️🌈文章来源地址https://www.toymoban.com/news/detail-481598.html
到了这里,关于[Android Studio]Android 数据存储--SQLite数据库存储的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!