前情提要:Android 数据库(SQLite)
【简介、创建、使用(增删改查、事务、实战演练)、数据显示控件(ListView、Adapter、实战演练)】
https://blog.csdn.net/weixin_44949135/article/details/105955663
源项目 是 :黑马程序员(Android移动开发基础案例教程[有具体书籍])上的课本案例(第5章-SQLite数据库)。
哔哩哔哩网站 :https://www.bilibili.com/video/BV1P7411F7G9
原项目缺陷:添加数据后,数据条数 显示 不完全,最多 显示 6条。
原项目-源码(可用Gitee直接拷贝) :https://gitee.com/lwx001/Directory
本项目,采用 SQLite数据库 + ListView数据展示控件,可将用户添加的所有信息,分条展示出来。
源码(可用Gitee直接拷贝) :https://gitee.com/lwx001/Directory-ListView
两个项目,存在很多共同点(详见文末运行效果图)。
注意:姓名 是 主键,不可修改。
ListView的使用,参考的文章是:菜鸟教程上的2.4.4 Adapter基础讲解【3)SimpleCursorAdapter使用示例】。
https://www.runoob.com/w3cnote/android-tutorial-adapter.html
其实,这是Android实验报告三的第5小题。前三篇实验报告,就这一题不会写!!!感觉自己好牛逼~
下午,实验课,问了问老师,老师说了两种方法:1、ListView(本文);2、实体类封装 + ArralList集合(未尝试)。
这个代码,我参考菜鸟教程,初步写出来后,有很多Bug,最后是老师帮我调试的。谢谢老师~
目 录
总体结构示意图
代码
activity_main.xml(交互界面的设计与实现)
list_item.xml(展示条目的设计与实现)
MyHelper.java(SQLite数据库的帮助类)
MainActivity.java(交互界面逻辑代码的设计与实现)
App运行展示
总体结构示意图
代码
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>
<!-- <TextView-->
<!-- android:id="@+id/tv_show"-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:layout_below="@+id/ll_btn"-->
<!-- android:layout_marginTop="25dp"-->
<!-- android:textSize="20sp" />-->
</RelativeLayout>
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 -->
<ImageView
android:id="@+id/item_image"
android:layout_width="66px"
android:layout_height="66px"
android:layout_margin="8dp"
android:background="@drawable/cat" />
<!-- 定义一个竖直方向的LinearLayout-->
<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>
MyHelper.java(SQLite数据库的帮助类)
package cn.lwx.directory;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.database.sqlite.SQLiteOpenHelper;
class MyHelper extends SQLiteOpenHelper {
public MyHelper(Context context) {
super(context, "itcast.db", null, 1);
}
@Override
public void onCreate(SQLiteDatabase db) {
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) {
}
}
MainActivity.java(交互界面逻辑代码的设计与实现)
package cn.lwx.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.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 TextView mTvShow;
private Button mBtnAdd;
private Button mBtnQuery;
private Button mBtnUpdate;
private Button mBtnDelete;
private ListView mList; // 实验三 5
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
myHelper = new MyHelper(this);
init();//初始化控件
}
private void init() {
mEtName = (EditText) findViewById(R.id.et_name);
mEtPhone = (EditText) findViewById(R.id.et_phone);
// mTvShow = (TextView) findViewById(R.id.tv_show);
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); // 实验三 5
}
@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);
db.insert("information", null, values);
Toast.makeText(this, "信息已添加", Toast.LENGTH_SHORT).show();
db.close();
break;
case R.id.btn_query: //查询数据
Toast.makeText(this, "query", Toast.LENGTH_SHORT).show();
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));
// System.out.println("\n" + "Name : " + cursor.getString(1) + " ;Tel : " + cursor.getString(2));
// }
// while (cursor.moveToNext()) {
// System.out.println("\n" + "Name : " + cursor.getString(1) + " ;Tel : " + cursor.getString(2));
// //mTvShow.append("\n" + "Name : " + cursor.getString(1) + " ;Tel : " + cursor.getString(2));
// }
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", null, null);
Toast.makeText(this, "信息已删除", Toast.LENGTH_SHORT).show();
// mTvShow.setText("");
db.close();
break;
}
}
}
App运行展示
点个赞再走吧,求求了,写篇博客 不容易 啊 ~
(´▽`ʃƪ) (^_-)db(-_^) (o-ωq)).oO 困