Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android技術基礎 >> 第66章、使用SQLite本地數據庫(從零開始學Android)

第66章、使用SQLite本地數據庫(從零開始學Android)

編輯:Android技術基礎

在Android平台上,集成了一個嵌入式關系型數據庫—SQLite。以SQLite是一款輕型數據庫:SQLite3支持 NULL、INTEGER、REAL(浮點數字)、TEXT(字符串文本)和BLOB(二進制對象)數據類型,雖然它支持的類型只有五種,但實際上sqlite3也接受varchar(n)、char(n)、decimal(p,s) 等數據類型,只不過在運算或保存時會轉成對應的五種數據類型。

  SQLite可以解析大部分標准SQL語句。

 

一、設計界面

  1、布局文件

  打開res/layout/activity_main.xml文件。
  輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2.    
  3.  <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  4.     android:orientation="vertical"  
  5.      android:layout_width="match_parent"  
  6.      android:layout_height="match_parent"  
  7.      android:background="#EFEFEF">  
  8.   
  9.     <TextView    
  10.         android:layout_width="fill_parent"   
  11.         android:layout_height="wrap_content"   
  12.         android:text="@string/prompt"  
  13.         android:textColor="@drawable/black" />  
  14.        
  15.      <EditText    
  16.         android:id="@+id/editbook"   
  17.         android:layout_width="fill_parent"   
  18.         android:layout_height="wrap_content"   
  19.         android:textColor="@drawable/black" />  
  20.     
  21.      <TextView    
  22.         android:layout_width="fill_parent"   
  23.         android:layout_height="wrap_content"   
  24.         android:text="作者:"  
  25.         android:textColor="@drawable/black" />  
  26.        
  27.     <EditText    
  28.          android:id="@+id/editauthor"   
  29.          android:layout_width="fill_parent"   
  30.          android:layout_height="wrap_content"   
  31.          android:textColor="@drawable/black" />  
  32.     
  33.      <TextView    
  34.          android:layout_width="fill_parent"   
  35.          android:layout_height="wrap_content"   
  36.          android:text="出版社:"  
  37.          android:textColor="@drawable/black" />  
  38.        
  39.     <EditText    
  40.         android:id="@+id/editpublisher"   
  41.         android:layout_width="fill_parent"   
  42.         android:layout_height="wrap_content"   
  43.         android:textColor="@drawable/black" />  
  44.    
  45.     <ListView  
  46.         android:id="@+id/listview"  
  47.         android:layout_width="fill_parent"  
  48.         android:layout_height="wrap_content"  
  49.         android:background="@drawable/black" />  
  50.   
  51.   
  52. </LinearLayout>  

  2、自定義列表文件

  打開res/layout/list.xml文件。
  輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2.    
  3. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
  4.   android:layout_width="match_parent"  
  5.   android:layout_height="match_parent">  
  6.    
  7.   <CheckedTextView android:id="@+id/textbookname"  
  8.       android:layout_width="wrap_content"  
  9.       android:layout_height="wrap_content" />  
  10.   
  11.   <ImageView  
  12.       android:id="@+id/imageView1"  
  13.       android:layout_width="wrap_content"  
  14.       android:layout_height="wrap_content"  
  15.       android:src="@drawable/list_driver" />  
  16.    
  17.      
  18.    <CheckedTextView android:id="@+id/textauthor"  
  19.       android:layout_width="wrap_content"  
  20.       android:layout_height="wrap_content"/>  
  21.    
  22.    <ImageView  
  23.       android:id="@+id/imageView2"  
  24.       android:layout_width="wrap_content"  
  25.       android:layout_height="wrap_content"  
  26.       android:src="@drawable/list_driver" />  
  27.   
  28.    <CheckedTextView android:id="@+id/textpublisher"  
  29.       android:layout_width="wrap_content"  
  30.       android:layout_height="wrap_content" />  
  31.    
  32. </LinearLayout>  

  3、顏色文件

  打開res/values/color.xml文件。
  輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <resources>  
  3.   <drawable name="black">#000000</drawable>  
  4.   <drawable name="white">#FFFFFFFF</drawable>  
  5.   <drawable name="gray">#EFEFEF</drawable>  
  6. </resources>  

  4、字符串文件

  打開res/values/string.xml文件。
  輸入以下代碼:

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <resources>  
  3.   
  4.     <string name="app_name">SQLite</string>  
  5.     <string name="prompt">書名:(請使用菜單:完成新增、修改、查詢、刪除記錄)</string>  
  6.     <string name="addrec">新增</string>  
  7.     <string name="editrec">修改</string>  
  8.     <string name="queryrec">查詢</string>  
  9.     <string name="delrec">刪除</string>  
  10.   
  11. </resources>  

二、程序文件

  1、SQLiteHelper.java文件

  打開“src/com.genwoxue.sqlite/SQLiteHelper.java”文件。
  然後輸入以下代碼:

[java] view plain copy  
  1. package com.genwoxue.sqlite;  
  2.   
  3. import android.content.ContentValues;  
  4. import android.content.Context;  
  5. import android.database.Cursor;  
  6. import android.database.sqlite.SQLiteDatabase;  
  7. import android.database.sqlite.SQLiteOpenHelper;  
  8.    
  9. public class SQLiteHelper extends SQLiteOpenHelper {  
  10.   
  11.        private final static String DATABASE_NAME = "Library";  
  12.        private final static int DATABASE_VERSION = 1;  
  13.        private final static String TABLE_NAME = "Book";  
  14.    
  15.        //構造函數,創建數據庫  
  16.        public SQLiteHelper(Context context) {  
  17.               super(context, DATABASE_NAME, null, DATABASE_VERSION);  
  18.        }  
  19.    
  20.        //建表  
  21.        public void onCreate(SQLiteDatabase db) {  
  22.               String sql = "CREATE TABLE " + TABLE_NAME   
  23.                       + "(_id INTEGER PRIMARY KEY,"   
  24.                       + " BookName VARCHAR(30)  NOT NULL,"   
  25.                       + " Author VARCHAR(20),"  
  26.                       + " Publisher VARCHAR(30))";  
  27.               db.execSQL(sql);  
  28.        }  
  29.    
  30.    
  31.        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {  
  32.               String sql = "DROP TABLE IF EXISTS " + TABLE_NAME;  
  33.               db.execSQL(sql);  
  34.               onCreate(db);  
  35.        }  
  36.    
  37.        //獲取游標  
  38.        public Cursor select() {  
  39.               SQLiteDatabase db = this.getReadableDatabase();  
  40.               Cursor cursor = db.query(TABLE_NAME, null, null, null, null, null, null);  
  41.               return cursor;  
  42.        }  
  43.    
  44.        //插入一條記錄  
  45.        public long insert(String bookName,String author,String publisher ) {  
  46.               SQLiteDatabase db = this.getWritableDatabase();  
  47.               ContentValues cv = new ContentValues();  
  48.               cv.put("BookName", bookName);  
  49.               cv.put("Author", author);  
  50.               cv.put("Publisher", publisher);  
  51.               long row = db.insert(TABLE_NAME, null, cv);  
  52.               return row;  
  53.        }  
  54.          
  55.        //根據條件查詢  
  56.        public Cursor query(String[] args) {  
  57.            SQLiteDatabase db = this.getReadableDatabase();  
  58.            Cursor cursor = db.rawQuery("SELECT * FROM "+TABLE_NAME+" WHERE BookName LIKE ?", args);  
  59.            return cursor;  
  60.        }  
  61.    
  62.        //刪除記錄  
  63.        public void delete(int id) {  
  64.               SQLiteDatabase db = this.getWritableDatabase();  
  65.               String where ="_id = ?";  
  66.               String[] whereValue = { Integer.toString(id) };  
  67.               db.delete(TABLE_NAME, where, whereValue);  
  68.        }  
  69.    
  70.        //更新記錄  
  71.        public void update(int id, String bookName,String author,String publisher) {  
  72.               SQLiteDatabase db = this.getWritableDatabase();  
  73.               String where = "_id = ?";  
  74.               String[] whereValue = { Integer.toString(id) };  
  75.               ContentValues cv = new ContentValues();  
  76.               cv.put("BookName", bookName);  
  77.               cv.put("Author", author);  
  78.               cv.put("Publisher", publisher);  
  79.               db.update(TABLE_NAME, cv, where, whereValue);  
  80.        }  
  81. }  

  2、MainActivity.java文件

  打開“src/com.genwoxue.sqlite/MainActivity.java”文件。
  然後輸入以下代碼:

[java] view plain copy  
  1. package com.genwoxue.sqlite;  
  2.   
  3. import android.app.Activity;  
  4. import android.database.Cursor;  
  5. import android.os.Bundle;  
  6. import android.view.Menu;  
  7. import android.view.MenuItem;  
  8. import android.view.View;  
  9. import android.widget.AdapterView;  
  10. import android.widget.EditText;  
  11. import android.widget.ListView;  
  12. import android.widget.SimpleCursorAdapter;  
  13.   
  14. public class MainActivity extends Activity {  
  15.     private SQLiteHelper helper;  
  16.     private Cursor cursor;  
  17.     private ListView lvBook;  
  18.     private EditText editBook;  
  19.     private EditText editAuthor;  
  20.     private EditText editPublisher;  
  21.       
  22.     private int id=0;  
  23.       
  24.     protected final static int MENU_ADD = Menu.FIRST;  
  25.     protected final static int MENU_EDIT = Menu.FIRST + 1;  
  26.     protected final static int MENU_QUERY = Menu.FIRST + 2;  
  27.     protected final static int MENU_DELETE = Menu.FIRST + 3;  
  28.   
  29.     //執行菜單選項  
  30.     public boolean onOptionsItemSelected(MenuItem item)  
  31.     {  
  32.       super.onOptionsItemSelected(item);  
  33.       switch (item.getItemId())  
  34.       {  
  35.         case MENU_ADD:  
  36.           this.addRec();  
  37.           break;  
  38.         case MENU_EDIT:  
  39.           this.editRec();  
  40.           break;  
  41.         case MENU_QUERY:  
  42.             this.queryRec();  
  43.             break;  
  44.         case MENU_DELETE:  
  45.           this.deleteRec();  
  46.           break;  
  47.       }  
  48.       return true;  
  49.     }  
  50.   
  51.     //初始化菜單  
  52.     public boolean onCreateOptionsMenu(Menu menu)  
  53.     {  
  54.       super.onCreateOptionsMenu(menu);  
  55.       menu.add(Menu.NONE, MENU_ADD, 0, R.string.addrec).setIcon(android.R.drawable.ic_menu_add);  
  56.       menu.add(Menu.NONE, MENU_EDIT, 0, R.string.editrec).setIcon(android.R.drawable.ic_menu_edit);  
  57.       menu.add(Menu.NONE,MENU_QUERY,0,R.string.queryrec).setIcon(android.R.drawable.ic_menu_search);  
  58.       menu.add(Menu.NONE, MENU_DELETE, 0, R.string.delrec).setIcon(android.R.drawable.ic_menu_delete);  
  59.       return true;  
  60.     }  
  61.   
  62.   
  63.   
  64.     public void onCreate(Bundle savedInstanceState)  
  65.     {  
  66.       super.onCreate(savedInstanceState);  
  67.       setContentView(R.layout.activity_main);  
  68.         
  69.       lvBook = (ListView) this.findViewById(R.id.listview);  
  70.       editBook = (EditText) this.findViewById(R.id.editbook);  
  71.       editAuthor=(EditText) this.findViewById(R.id.editauthor);  
  72.       editPublisher=(EditText) this.findViewById(R.id.editpublisher);  
  73.         
  74.       //表中內容填充到自定義ListView  
  75.       helper = new SQLiteHelper(this);  
  76.       cursor = helper.select();  
  77.       SimpleCursorAdapter adapter = new SimpleCursorAdapter(  
  78.               this,   
  79.               R.layout.list,   
  80.               cursor,   
  81.               new String[] {"BookName","Author","Publisher"},   
  82.               new int[] { R.id.textbookname,R.id.textauthor,R.id.textpublisher}  
  83.               );  
  84.       lvBook.setAdapter(adapter);  
  85.   
  86.       // lvBook設置OnItemClickListener監聽事件   
  87.       lvBook.setOnItemClickListener(new AdapterView.OnItemClickListener(){  
  88.           public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3){  
  89.               cursor.moveToPosition(arg2);          // 將cursor移到所點擊的值   
  90.               id = cursor.getInt(0);                // 取得字段_id的值   
  91.               editBook.setText(cursor.getString(1));    // 取得字段Rec_text的值   
  92.               editAuthor.setText(cursor.getString(2));  
  93.               editPublisher.setText(cursor.getString(3));  
  94.           }  
  95.       });  
  96.   
  97.     }  
  98.   
  99.     //添加記錄  
  100.     private void addRec()  
  101.     {  
  102.       if (editBook.getText().toString().equals(""))  
  103.           return;  
  104.       helper.insert(editBook.getText().toString(),editAuthor.getText().toString(),editPublisher.getText().toString());    
  105.       //重新加載數據  
  106.       cursor.requery();  
  107.       lvBook.invalidateViews();  
  108.       editBook.setText("");  
  109.       editAuthor.setText("");  
  110.       editPublisher.setText("");  
  111.     }  
  112.   
  113.     // 修改記錄  
  114.     private void editRec()  
  115.     {  
  116.       if (editBook.getText().toString().equals(""))  
  117.         return;  
  118.       helper.update(id, editBook.getText().toString(),editAuthor.getText().toString(),editPublisher.getText().toString());  
  119.         
  120.       //重新加載數據  
  121.       cursor.requery();  
  122.       lvBook.invalidateViews();  
  123.       editBook.setText("");  
  124.       editAuthor.setText("");  
  125.       editPublisher.setText("");  
  126.     }  
  127.   
  128.     //根據書名查詢  
  129.     private void queryRec()  
  130.     {  
  131.       String et=editBook.getText().toString();  
  132.       String args[]=new String[]{"%"+et+"%"};  
  133.       cursor=helper.query(args);  
  134.       SimpleCursorAdapter adapter = new SimpleCursorAdapter(  
  135.               this,   
  136.               R.layout.list,   
  137.               cursor,   
  138.               new String[] {"BookName","Author","Publisher"},   
  139.               new int[] { R.id.textbookname,R.id.textauthor,R.id.textpublisher}  
  140.               );  
  141.       lvBook.setAdapter(adapter);  
  142.     }  
  143.       
  144.     //刪除記錄  
  145.     private void deleteRec()  
  146.     {  
  147.       helper.delete(id);  
  148.       cursor.requery();  
  149.       lvBook.invalidateViews();  
  150.       editBook.setText("");  
  151.  }  
  152.   
  153. }  

三、配置文件

  打開“AndroidManifest.xml”文件。
  然後輸入以下代碼: 

[html] view plain copy  
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     package="com.genwoxue.sqlite"  
  4.     android:versionCode="1"  
  5.     android:versionName="1.0" >  
  6.   
  7.     <uses-sdk  
  8.         android:minSdkVersion="8"  
  9.         android:targetSdkVersion="15" />  
  10.   
  11.     <application  
  12.         android:allowBackup="true"  
  13.         android:icon="@drawable/ic_launcher"  
  14.         android:label="@string/app_name"  
  15.         android:theme="@style/AppTheme" >  
  16.         <activity  
  17.             android:name="com.genwoxue.sqlite.MainActivity"  
  18.             android:label="@string/app_name"  
  19.             <span style="color:#ff0000;"><strong>android:theme="@android:style/Theme"</strong> </span>>  
  20.             <intent-filter>  
  21.                 <action android:name="android.intent.action.MAIN" />  
  22.                 <category android:name="android.intent.category.LAUNCHER" />  
  23.             </intent-filter>  
  24.         </activity>  
  25.     </application>  
  26.   
  27. </manifest>  

  注意:在Android4.0中,如果想顯示2.3版本中樣式的菜單,需要在配置文件中填加以上紅色代碼。 

四、運行結果

 

   \ \

   說明:輸入內容,單擊“新增”菜單,則添加一條記錄;也可以根據書名查詢相應書籍;也可以選中某條記錄,然後單擊“修改”或“刪除”菜單。

   

 附:

(一)如何刪除Sqlite數據庫

  常有人問:如何刪除自己創建的數據庫?

  在Activity中,提供有現成的方法:public boolean deleteDatabase (String name)  

(二)SimpleCursorAdapter簡要說明

  描述:

  SimpleCurosrAdapter 是一個將 Cursor 中的 columns 與在 XML 文件中定義的 TextViews 或 ImageViews 進行匹配的簡易 adapter。你可以指定選擇 Cursor 中的哪些 columns、用哪些 views 來顯示這些 columns 、以及指定定義這些 views 的 xml 文件。

也就是說,SimpleCursorAdapter 允許綁定一個 Cursor 的 columns 到 ListView 上,並使用自定義的 layout 顯示 List中的每個項目。

可以使用 SimpleCursorAdapter 作為中間橋梁,將從 sqlite 數據庫中查詢出來的數據直接顯示到 ListView 中。

  原型:

  public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to) {

     super(context, layout, c);
      mTo = to;
      mOriginalFrom = from;
      findColumns(from);
   }

  參數:

  Context context, 這個與 SimpleListItemFactory 相關的 ListView 所處運行上下文(context)。也就是這個 ListView 所在的 Activity。

  int layout, 顯示 list item 的 布局文件。這個 layout 文件中至少要包含在 "to" 參數中命名的 views。

  Cursor c,數據庫的光標( Cursor )。如果 cursor 無效,則該參數可以為 null

  String[] from, 指定 column 中的哪些列的數據將綁定(顯示)到 UI 中。如果 cursor 無效, 則該參數可為 null。

  int[] to, 指定用於顯示 "from" 參數指定的數據列表的 views。 這些 views 必須都是 TextViews。 "from" 參數的前 N 個值(valus)和 "to" 參數的前 N 個 views 是一一對應的關系。如果 cursor 無效,則該參數可為 null。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved