Android Studio初学者实例:SQLite实验:绿豆通讯录

该示例展示了在Android中如何使用SQLite数据库进行通讯录数据的管理,包括创建数据库表、插入数据、查询数据、更新数据和删除数据。通过继承SQLiteOpenHelper类,实现了数据库的生命周期管理,并使用ContentValues存储和传递数据,使用Cursor处理查询结果,最后通过SimpleCursorAdapter显示在ListView上。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

本次实验是使用SQLite对一个通讯录表进行简单增删改查

以下是实验效果:

 首先是继承SQLiteOpenHelper的数据库自定义类

对于此类必须继承于SQLiteOpenHelper ,当new创造该类的实例的时候会执行创建数据库以及表的操作,例如本代码中数据库名为itcast,数据库表名为informatoin。db.execSQL为执行创建表语句。

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

public class MyHelper extends SQLiteOpenHelper {
    public MyHelper(Context context) {
//上下文、数据库名、工厂、版本
        super(context, "itcast.db", null, 1);
    }

    @Override
    public void onCreate(SQLiteDatabase db) {
//创建数据表 db.execSQL执行建表语句
        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) {
    }
}

主界面的界面代码

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/bg"
    android:paddingLeft="16dp"
    android:paddingTop="16dp"
    android:paddingRight="16dp"
    android:paddingBottom="16dp"
    tools:context=".MainActivity">

    <LinearLayout
        android:id="@+id/ll_name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/ll_phone"
        android:layout_alignStart="@+id/ll_btn"
        android:layout_alignLeft="@+id/ll_btn">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="姓  名 :"
            android:textSize="18sp" />

        <EditText
            android:id="@+id/et_name"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="请输入姓名"
            android:textSize="16sp" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/ll_phone"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/ll_btn"
        android:layout_alignStart="@+id/ll_name"
        android:layout_alignLeft="@+id/ll_name"
        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:id="@+id/ll_btn"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true">

        <Button
            android:id="@+id/btn_add"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginRight="2dp"
            android:layout_weight="1"
            android:background="#B9B9FF"
            android:text="添加"
            android:textSize="18sp" />

        <Button
            android:id="@+id/btn_query"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginRight="2dp"
            android:layout_weight="1"
            android:background="#DCB5FF"
            android:text="查询"
            android:textSize="18sp" />

        <Button
            android:id="@+id/btn_update"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginRight="2dp"
            android:layout_weight="1"
            android:background="#E6CAFF"
            android:text="修改"
            android:textSize="18sp" />

        <Button
            android:id="@+id/btn_delete"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="#ACD6FF"
            android:text="删除"
            android:textSize="18sp" />
    </LinearLayout>
    <ListView
        android:id="@+id/lv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/ll_btn"
        android:layout_margin="5dp"
        android:divider="#d9d9d9"
        android:dividerHeight="2dp">
    </ListView>

</RelativeLayout>

 item界面代码

list_item.xml

<?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="wrap_content">
    <ImageView
        android:id="@+id/item_image"
        android:layout_width="100px"
        android:layout_height="100px"
        android:layout_margin="8dp"
        android:background="@drawable/tx" />
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <TextView
            android:id="@+id/item_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="3sp"
            android:text="姓名"
            android:textColor="#00FFFF"
            android:textSize="17sp" />

        <TextView
            android:id="@+id/item_phone"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="电话"
            android:textColor="#7FFFAA"
            android:textSize="16sp" />
    </LinearLayout>
</LinearLayout>

 逻辑代码

MainActivity

import androidx.appcompat.app.AppCompatActivity;

import android.content.ContentValues;
import android.database.Cursor;
import android.database.sqlite.SQLiteDatabase;
import android.os.Bundle;
import android.provider.ContactsContract;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ListView;
import android.widget.SimpleCursorAdapter;
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 Button mBtnAdd;
    private Button mBtnQuery;
    private Button mBtnUpdate;
    private Button mBtnDelete;

    private ListView mList;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //new创建对象  传递上下文this
        myHelper = new MyHelper(this);
        init();//初始化控件 绑定控件
    }

    private void init() {
        mEtName = (EditText) findViewById(R.id.et_name);
        mEtPhone = (EditText) findViewById(R.id.et_phone);
        mBtnAdd = (Button) findViewById(R.id.btn_add);
        mBtnQuery = (Button) findViewById(R.id.btn_query);
        mBtnUpdate = (Button) findViewById(R.id.btn_update);
        mBtnDelete = (Button) findViewById(R.id.btn_delete);
        mBtnAdd.setOnClickListener(this);
        mBtnQuery.setOnClickListener(this);
        mBtnUpdate.setOnClickListener(this);
        mBtnDelete.setOnClickListener(this);
        mList = (ListView) findViewById(R.id.lv);
    }

    @Override
    public void onClick(View v) {
        String name;
        String phone;
        SQLiteDatabase db;
        ContentValues values;
        switch (v.getId()) {
            case R.id.btn_add: //添加数据
                name = mEtName.getText().toString();
                phone = mEtPhone.getText().toString();
                db = myHelper.getWritableDatabase();//获取可读写SQLiteDatabse对象
                values = new ContentValues();       // 创建ContentValues对象
                values.put("name", name);           // 将数据添加到ContentValues对象
                values.put("phone", phone);         // 将数据添加到ContentValues对象
                db.insert("information", null, values);//执行方法insert向数据表添加数据
                Toast.makeText(this, "信息已添加", Toast.LENGTH_SHORT).show();//提示框
                db.close();//关闭db
                break;
            case R.id.btn_query: //查询数据
                Toast.makeText(this, "query", Toast.LENGTH_SHORT).show();
                db = myHelper.getReadableDatabase();
                if(mEtName.getText().toString().isEmpty()){
                    Cursor cursor = db.query("information", null, null, null, null, null, null);//Cursor作为一种游标的存储类型,来存储获取到的数据
                    SimpleCursorAdapter spcAdapter = new SimpleCursorAdapter(this, R.layout.list_item, cursor,
                            new String[]{"name", "phone"}, new int[]{R.id.item_name, R.id.item_phone});
                    mList.setAdapter(spcAdapter);
                }else {
                    Cursor cursor = db.rawQuery("select * from information where name=?", new String[]{mEtName.getText().toString()});
                    SimpleCursorAdapter spcAdapter = new SimpleCursorAdapter(this, R.layout.list_item, cursor,
                            new String[]{"name", "phone"}, new int[]{R.id.item_name, R.id.item_phone});
                    mList.setAdapter(spcAdapter);
                }
                //cursor.close();
                //db.close();
                break;
            case R.id.btn_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", "name=?",new String[]{mEtName.getText().toString()});
                Toast.makeText(this, mEtName.getText().toString()+"信息已删除", Toast.LENGTH_SHORT).show();
                db.close();
                break;
        }
    }
}

 以上是一个简单的示例,详细的讲解未来补充,还有很多可以补充的地方,例如:采用实体类、换一个更详细的适配器Adapter、让通讯录的信息更加丰富等

需要资源 资源已经传到主页  绿豆通讯录   免积分下载,可以下载一下哦

### 关于 Android Studio 中的绿豆通讯录项目 在 Android 开发领域,绿豆通讯录通常被作为一个入门级的教学案例来帮助开发者理解如何实现数据存储、展示以及操作等功能。以下是关于此项目的详细介绍。 #### 1. **内容提供者的配置** 当开发类似于绿豆通讯录的应用程序时,内容提供者(`Content Provider`)扮演着重要角色。它允许应用程序之间共享数据[^1]。通过以下 XML 配置片段可以看出,内容提供者需要在 `AndroidManifest.xml` 文件中注册: ```xml <application> ... <provider android:name=".MyContentProvider" android:authorities="cn.itcast.mycontentprovider" android:enabled="true" android:exported="true"> </provider> </application> ``` 上述代码展示了如何定义一个名为 `.MyContentProvider` 的内容提供者,并为其指定权限和访问控制属性。 #### 2. **示例功能扩展** 除了基本的内容提供者设置外,还可以进一步优化应用的功能。例如,在实际项目中可能涉及以下几个方面: - 使用实体类表示联系人信息结构。 - 替换默认列表视图使用的简单适配器为自定义适配器以增强界面效果。 - 增加更多字段到数据库表单设计中以便支持更丰富的联系方式记录[^2]。 这些改进措施能够显著提升用户体验并使最终产品更具吸引力。 #### 3. **具体实现步骤概述** 虽然这里不建议使用诸如“首先”这样的引导词,但仍可以通过描述各部分逻辑关系的方式介绍整个流程: 构建这样一个完整的通讯录系统大致包括如下几个主要模块的设计与编码工作——即创建 UI 界面用于输入/显示联系人详情;编写后台服务处理增删改查请求并将结果反馈给前端页面;最后确保所有组件间通信顺畅无误地完成预期目标。 对于初学者而言,可以从官方文档或者一些知名技术博客获取详尽指导材料,它们往往包含了从零起步直至成品发布的全过程解析资料链接地址作为参考资料供学习参考之用。 #### 提供一段基础代码样例 下面给出了一段简化版的操作方法演示如何向 SQLite 数据库插入新条目并通过查询返回全部现有项列表: ```java public class MyDatabaseHelper extends SQLiteOpenHelper { private static final String DATABASE_NAME = "contacts.db"; private static final int DATABASE_VERSION = 1; public MyDatabaseHelper(Context context) { super(context, DATABASE_NAME, null, DATABASE_VERSION); } @Override public void onCreate(SQLiteDatabase db) { db.execSQL("CREATE TABLE IF NOT EXISTS contacts (_id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT, phone_number TEXT);"); } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {} public long addContact(String name, String phoneNumber){ SQLiteDatabase db = this.getWritableDatabase(); ContentValues values = new ContentValues(); values.put("name", name); values.put("phone_number", phoneNumber); return db.insert("contacts",null ,values); } public Cursor getAllContacts(){ SQLiteDatabase db = this.getReadableDatabase(); return db.query("contacts",new String[]{"_id","name","phone_number"},null,null,null,null,"name ASC"); } } ``` 该 Java 类继承自 `SQLiteOpenHelper`, 它提供了两个核心函数分别用来初始化表格布局(`onCreate`) 及检索已保存的数据集 (`getAllContacts`). 同时还封装了一个便捷接口方便调用方新增个人档案记录. ---
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

林林要一直努力

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值