Android 数据库(SQLite)【简介、创建、使用(增删改查、事务、实战演练)、数据显示控件(ListView、Adapter、实战演练-绿豆通讯录)】
目? ?錄
(壹)SQLite數據庫簡介
(貳)數據庫的創建
(叁)數據庫的使用
3.1、SQlite的基本操作
3.1.1、添加數據
3.1.2、修改數據
3.1.3、查詢數據
3.1.4、刪除數據
3.2、SQLite中的事務
3.3、實戰演練——綠豆通訊錄
前情提要(綠豆通訊錄+ListView)
實現步驟 and 技術要點
activity_main.xml
MyHelper.java
MainActivity.java
運行截圖
(肆)數據顯示控件
ListView控件
常用數據適配器(Adapter)
BaseAdapter
SimpleAdapter
ArrayAdapter
實戰演練——Android應用市場
總體結構示意圖
(代碼)工程文件
運行截圖
兩種優化方式
(壹)SQLite數據庫簡介
(貳)數據庫的創建
(叁)數據庫的使用
3.1、SQlite的基本操作
3.1.1、添加數據
3.1.2、修改數據
3.1.3、查詢數據
3.1.4、刪除數據
3.2、SQLite中的事務
3.3、實戰演練——綠豆通訊錄
前情提要(綠豆通訊錄+ListView)
源項目 是 :黑馬程序員(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
實現步驟 and 技術要點
【工程文件】項目源碼 :https://gitee.com/lwx001/Directory?
可用 “Gitee” 直接 拷貝 到 “Android Studio” 中。
注意:添加數據后,重新啟動Android模擬器,數據會保留(數據仍可被查詢到)。
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"><LinearLayoutandroid: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"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="姓 名 :"android:textSize="18sp" /><EditTextandroid:id="@+id/et_name"android:layout_width="match_parent"android:layout_height="wrap_content"android:hint="請輸入姓名"android:textSize="16sp" /></LinearLayout><LinearLayoutandroid: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"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="電 話 :"android:textSize="18sp" /><EditTextandroid:id="@+id/et_phone"android:layout_width="match_parent"android:layout_height="wrap_content"android:hint="請輸入手機號碼"android:textSize="16sp" /></LinearLayout><LinearLayoutandroid:id="@+id/ll_btn"android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_centerVertical="true"><Buttonandroid: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" /><Buttonandroid: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" /><Buttonandroid: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" /><Buttonandroid: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><TextViewandroid: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>MyHelper.java
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);}@Overridepublic void onCreate(SQLiteDatabase db) {db.execSQL("CREATE TABLE information(_id INTEGER PRIMARY KEY AUTOINCREMENT, name VARCHAR(20), phone VARCHAR(20))");}@Overridepublic 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.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;@Overrideprotected 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);}@Overridepublic 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: //查詢數據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.btn_update: //修改數據db = myHelper.getWritableDatabase();values = new ContentValues(); // 要修改的數據values.put("phone", phone = mEtPhone.getText().toString());//更新phone字段//values.put("name", name = mEtName.getText().toString());//更新name字段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;}} }運行截圖
在 存在 數據的情況 下,修改name值---無效!!!
一共添加了 7條 數據。信息顯示不全 !
信息顯示不全!(肆)數據顯示控件
ListView控件
常用數據適配器(Adapter)
BaseAdapter
SimpleAdapter
ArrayAdapter
實戰演練——Android應用市場
總體結構示意圖
(代碼)工程文件
源碼 [工程文件] :https://gitee.com/lwx001/ListView?
可用 Gitee 直接 拷貝 到 Android Studio 中。
運行截圖
兩種優化方式
總結
以上是生活随笔為你收集整理的Android 数据库(SQLite)【简介、创建、使用(增删改查、事务、实战演练)、数据显示控件(ListView、Adapter、实战演练-绿豆通讯录)】的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 数学建模论文写作小技巧分享
- 下一篇: Android 新闻客户端