您好,登錄后才能下訂單哦!
這篇文章主要介紹了Android如何通過SQLite數據庫實現數據存儲管理,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
在Android Studio中進行有關代碼的編寫和界面效果展示。
SQLite數據庫的圖形化工具SQLiteStudio
下載網址:SQLiteStudio官網
(1)需實現一個應用可供用戶進行數據的錄入存儲
(2)能實現基礎CRUD操作,對數據進行的刪、查、改等操作
(3)同時要有輸入欄和結果的展示。
SQLiteOpenHelper 是Android 提供的一個抽象工具類,負責管理數據庫的創建、升級工作。如果我們想創建數據庫,就需要自定義一個類繼承SQLiteOpenHelper,然后覆寫其中的抽象方法。
其中DbHelper類繼承了SQLiteOpenHelper 類。在onCreate()方法中通過執行sql 語句實現表的創建。MyDAO類定義操作數據庫的增刪改查方法,insert(),delete(),update(),select()
activity_main.xml對主界面進行設計,需要有輸入欄、操作按鈕、結果顯示,其中結果顯示使用listView組件進行展示。
部分代碼:
<LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:addStatesFromChildren="true" > <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="姓名" android:fontFamily="@font/huawencaiyun" android:textColor="@color/blue" android:textSize="25sp"/> <EditText android:id="@+id/et_name" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:singleLine="true" /> </LinearLayout> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:addStatesFromChildren="true" android:gravity="center" > <Button android:id="@+id/bt_add" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="添加" /> </LinearLayout> <ListView android:gravity="center" android:id="@+id/listView" android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="5dip" > </ListView>
對上述listView組件的item元素設計:
<?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="match_parent" android:orientation="horizontal" > <TextView android:id="@+id/tv_id" android:textSize="25sp" android:layout_width="50dp" android:layout_height="wrap_content"/> </LinearLayout>
核心代碼:(這里只展示 onCreate和displayRecords兩個方法)
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); myDAO = new MyDAO(this); //創建數據庫訪問對象 if(myDAO.getRecordsNumber()==0) { //防止重復運行時重復插入記錄 myDAO.insertInfo("王家偉", 20); //插入記錄 myDAO.insertInfo("結衣", 19); //插入記錄 } initView(); initEvent(); displayRecords(); //顯示記錄 } public void displayRecords(){ //顯示記錄方法定義 listView = (ListView)findViewById(R.id.listView); listData = new ArrayList<Map<String,Object>>(); Cursor cursor = myDAO.allQuery(); while (cursor.moveToNext()){ int id=cursor.getInt(0); //獲取字段值 String name=cursor.getString(1); //int age=cursor.getInt(2); @SuppressLint("Range") int age=cursor.getInt(cursor.getColumnIndex("age"));//推薦此種方式 listItem=new HashMap<String,Object>(); //必須在循環體里新建 listItem.put("_id", id); //第1參數為鍵名,第2參數為鍵值 listItem.put("name", name); listItem.put("age", age); listData.add(listItem); //添加一條記錄 } listAdapter = new SimpleAdapter(this, listData, R.layout.list_item, //自行創建的列表項布局 new String[]{"_id","name","age"}, new int[]{R.id.tv_id,R.id.tv_name,R.id.tv_age}); listView.setAdapter(listAdapter); //應用適配器 listView.setOnItemClickListener(new AdapterView.OnItemClickListener() { //列表項監聽 @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { Map<String,Object> rec= (Map<String, Object>) listAdapter.getItem(position); //從適配器取記錄 et_name.setText(rec.get("name").toString()); //刷新文本框 et_age.setText(rec.get("age").toString()); Log.i("ly",rec.get("_id").toString()); selId=rec.get("_id").toString(); //供修改和刪除時使用 } }); }
核心代碼:
public class DbHelper extends SQLiteOpenHelper { public static final String TB_NAME = "friends"; //表名 //構造方法:第1參數為上下文,第2參數庫庫名,第3參數為游標工廠,第4參數為版本 public DbHelper(Context context, String dbname, SQLiteDatabase.CursorFactory factory, int version) { super(context, dbname, factory, version); //創建或打開數據庫 } @Override public void onCreate(SQLiteDatabase db) { //當表不存在時,創建表;第一字段為自增長類型 db.execSQL("CREATE TABLE IF NOT EXISTS " + TB_NAME + "( _id integer primary key autoincrement," + "name varchar," + "age integer"+ ")"); } @Override public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) { // 執行SQL命令 db.execSQL("DROP TABLE IF EXISTS " + TB_NAME); onCreate(db); } }
核心代碼:
//構造方法,參數為上下文對象 public MyDAO(Context context) { //第1參數為上下文,第2參數為數據庫名 dbHelper = new DbHelper(context, "test.db", null, 1); } //查詢所有記錄 public Cursor allQuery() { myDb = dbHelper.getReadableDatabase(); return myDb.rawQuery("select * from friends", null); } //返回數據表記錄數 public int getRecordsNumber() { myDb = dbHelper.getReadableDatabase(); Cursor cursor = myDb.rawQuery("select * from friends", null); return cursor.getCount(); } //插入記錄 public void insertInfo(String name, int age) { myDb = dbHelper.getWritableDatabase(); ContentValues values = new ContentValues(); values.put("name", name); values.put("age", age); long rowid = myDb.insert(DbHelper.TB_NAME, null, values); if (rowid == -1) Log.i("myDbDemo", "數據插入失敗!"); else Log.i("myDbDemo", "數據插入成功!" + rowid); } //刪除記錄 public void deleteInfo(String selId) { String where = "_id=" + selId; int i = myDb.delete(DbHelper.TB_NAME, where, null); if (i > 0) Log.i("myDbDemo", "數據刪除成功!"); else Log.i("myDbDemo", "數據未刪除!"); } //修改記錄 public void updateInfo(String name, int age, String selId) { //方法中的第三參數用于修改選定的記錄 ContentValues values = new ContentValues(); values.put("name", name); values.put("age", age); String where = "_id=" + selId; int i = myDb.update(DbHelper.TB_NAME, values, where, null); //上面幾行代碼的功能可以用下面的一行代碼實現 //myDb.execSQL("update friends set name = ? ,age = ? where _id = ?",new Object[]{name,age,selId}); if (i > 0) Log.i("myDbDemo", "數據更新成功!"); else Log.i("myDbDemo", "數據未更新!"); }
注意:創建的數據庫位于:/data/data/包名/databases/目錄中
最后使用SQLite數據庫的圖形化工具SQLiteStudio,將保存的db文件導入SQLiteStudio中,來查看在應用中創建的數據文件里的表數據
數據表的結構:
數據表的數據:
感謝你能夠認真閱讀完這篇文章,希望小編分享的“Android如何通過SQLite數據庫實現數據存儲管理”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。