版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 清單清單 5. 5. AppPreferenceActivityAppPreferenceActivity清單清單 6. 6. 使用使用 Intent Intent 調(diào)用調(diào)用 Preference Activity Preference Activity清單清單 7. 7. 在在 AndroidManifest.xml AndroidManifest.xml 中定義中定義 Intent Intent清單清單 8. 8. 使用使用 SharedPreferencesSharedPreferenc
2、es使用使用 SQLiteSQLite 數(shù)據(jù)庫(kù)數(shù)據(jù)庫(kù)清單清單 9. 9. DBHelperDBHelper清單清單 10. 10. 初始化初始化 DBHelperDBHelper清單清單 11. 11. 創(chuàng)建數(shù)據(jù)庫(kù)表創(chuàng)建數(shù)據(jù)庫(kù)表清單清單 12. 12. 插入一行插入一行中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 /* * AppPreferenceActivity is a basic PreferenceActivity * C. Enrique Ortiz | http:/CEnriqueO */package com.cenriq
3、ueortiz.tutorials.datastore;import android.os.Bundle;import android.preference.PreferenceActivity;中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 public class AppPreferenceActivity extends PreferenceActivity /* * Default Constructor */ public AppPreferenceActivity() /* * Called when the activity
4、is first created. * Inflate the Preferences Screen XML declaration. */ Override中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 public void onCreate(Bundle savedInstanceState) super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.prefs); / Inflate the XML declaration 在樣例應(yīng)用程序中,像 清單 6
5、 中一樣,從菜單項(xiàng)處理程序中調(diào)用 Intent。中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 /* * Invoked when a menu item has been selected */Overridepublic boolean onOptionsItemSelected(MenuItem item) switch (item.getItemId() / Case: Bring up the Preferences Screen case R.id.menu_prefs: / Preferences / Launch the P
6、reference Activity中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 Intent i = new Intent(this, AppPreferenceActivity.class); startActivity(i); break; case R.id.menu.: : break; return true;此外,您必須在 AndroidManifest XML 文件中定義所有的 Intent,如 清單 7 所示。中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 : :
7、:中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 回想一下,PreferenceActivity 使用 SharedPreferences 在用戶與首選項(xiàng)屏幕交互時(shí)自動(dòng)存儲(chǔ)首選項(xiàng)。然后應(yīng)用程序在執(zhí)行各種任務(wù)時(shí)使用這些首選項(xiàng)。清單 8 展示了如何直接使用 SharedPreferences 來(lái)加載存儲(chǔ)的首選項(xiàng);關(guān)于加載的首選項(xiàng)在整個(gè)樣例代碼中是如何被使用的,您可以參考相應(yīng)的樣例代碼。此外,清單 8 也展示了如何利用 SharedPreferences 直接存儲(chǔ)首選項(xiàng),以防您喜歡自己管理首選項(xiàng)(不是通過(guò) PrefenceActivity),使用
8、了一個(gè) Editor。清單 8 展示了如何使用 SharedPreferences 加載已存儲(chǔ)的首選項(xiàng),以及如何使用 Editor 更改已存儲(chǔ)的首選項(xiàng)。中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 / The following methods show how to use the SharedPreferences/* * Retrieves the Auto delete preference * return the value of auto delete */public boolean prefsGetAutoDelete(
9、) boolean v = false; SharedPreferences sprefs = PreferenceManager.getDefaultSharedPreferences(appContext);中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 String key = appContext.getString(R.string.prefs_autodelete_key); try v = sprefs.getBoolean(key, false); catch (ClassCastException e) return v;
10、 /* * Sets the auto delete preference * param v the value to set */中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 public void prefsSetAutoDelete(boolean v) SharedPreferences sprefs = PreferenceManager.getDefaultSharedPreferences(appContext); Editor e = sprefs.edit(); String key = appContext.getS
11、tring(R.string.prefs_autodelete_key); e.putBoolean(key, v); mit();接下來(lái),將介紹如何使用數(shù)據(jù)庫(kù)來(lái)存儲(chǔ)數(shù)據(jù)。中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 Android 通過(guò) SQLite 提供對(duì)本地關(guān)系數(shù)據(jù)庫(kù)的支持。表中(定義在以下代碼清單中)匯總了樣例應(yīng)用程序中使用的重要數(shù)據(jù)庫(kù)類(lèi)。樣例應(yīng)用程序使用了一個(gè) DBHelper 類(lèi)來(lái)封裝一些數(shù)據(jù)庫(kù)操作(參見(jiàn) 清單 9)。中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 pack
12、age com.cenriqueortiz.tutorials.datastore;import java.util.ArrayList;import android.content.Context;import android.database.Cursor;import android.database.sqlite.SQLiteDatabase;import android.database.sqlite.SQLiteOpenHelper;public class DBHelper extends SQLiteOpenHelper 為數(shù)據(jù)庫(kù)版本、數(shù)據(jù)庫(kù)名稱(chēng)和表名稱(chēng)定義了很多常量(參見(jiàn) 清
13、單 10)。中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 private SQLiteDatabase db; private static final int DATABASE_VERSION = 1; private static final String DB_NAME = sample.db; private static final String TABLE_NAME = friends; /* * Constructor * param context the application context */ public DBH
14、elper(Context context) super(context, DB_NAME, null, DATABASE_VERSION); db = getWritableDatabase(); 在準(zhǔn)備好創(chuàng)建數(shù)據(jù)庫(kù)時(shí),會(huì)調(diào)用 onCreate() 方法。在該方法中,創(chuàng)建表(參見(jiàn) 清單 11)。中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 /* * Called at the time to create the DB. * The create DB statement * param the SQLite DB */ Overrid
15、e public void onCreate(SQLiteDatabase db) db.execSQL( create table + TABLE_NAME + (_id integer primary key autoincrement, + fid text not null, name text not null) ); insert() 方法在信息導(dǎo)出到數(shù)據(jù)庫(kù)時(shí)由 MainActivity 調(diào)用(參見(jiàn) 清單 12)。中國(guó)移動(dòng)互聯(lián)網(wǎng)研發(fā)培訓(xùn)專(zhuān)家 /* * The Insert DB statement * param id
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 《證劵基礎(chǔ)知識(shí)最終》課件
- 《激光切割工藝》課件
- 荒山綠化項(xiàng)目可行性研究報(bào)告
- 《人力資源管理奧秘》課件
- 股份解禁協(xié)議三篇
- 專(zhuān)業(yè)畢業(yè)實(shí)習(xí)報(bào)告4篇
- 2023年-2024年企業(yè)主要負(fù)責(zé)人安全教育培訓(xùn)試題及答案(易錯(cuò)題)
- 2024員工三級(jí)安全培訓(xùn)考試題帶解析答案可打印
- 2023年-2024年項(xiàng)目部安全管理人員安全培訓(xùn)考試題附答案【培優(yōu)A卷】
- 2023年-2024年企業(yè)主要負(fù)責(zé)人安全培訓(xùn)考試題(預(yù)熱題)
- 無(wú)人機(jī)表演服務(wù)合同
- 呼吸內(nèi)科臨床診療指南及操作規(guī)范
- 物業(yè)經(jīng)理轉(zhuǎn)正述職
- 貿(mào)易崗位招聘面試題及回答建議(某大型國(guó)企)2025年
- 世界職業(yè)院校技能大賽高職組“關(guān)務(wù)實(shí)務(wù)組”賽項(xiàng)參考試題及答案
- 北師大版(2024新版)生物七年級(jí)上冊(cè)期末考點(diǎn)復(fù)習(xí)提綱
- 2024年理論中心組學(xué)習(xí)心得體會(huì)模版(2篇)
- 浙江省杭州市2023-2024學(xué)年六年級(jí)上學(xué)期語(yǔ)文期末試卷(含答案)
- 環(huán)保行業(yè)工業(yè)廢氣污染防治技術(shù)路線方案
- 電工的職業(yè)健康培訓(xùn)
- 《預(yù)防性侵害講座》課件
評(píng)論
0/150
提交評(píng)論