1 Android下數(shù)據(jù)庫(kù)創(chuàng)建
什么情況下我們才用數(shù) 據(jù)庫(kù)做數(shù)據(jù)存儲(chǔ)? 大量數(shù)據(jù)結(jié)構(gòu)相同的數(shù)據(jù)需要存儲(chǔ)時(shí)失驶。
mysql sqlserver2000 sqlite 嵌入式 輕量級(jí)
SqliteOpenHelper
創(chuàng)建數(shù)據(jù)庫(kù)步驟:
1.創(chuàng)建一個(gè)類集成SqliteOpenHelper土居,需要添加一個(gè)構(gòu)造方法,實(shí)現(xiàn)兩個(gè)方法oncreate ,onupgrade
構(gòu)造方法中的參數(shù)介紹:
//context :上下文 嬉探, name:數(shù)據(jù)庫(kù)文件的名稱 factory:用來(lái)創(chuàng)建cursor對(duì)象擦耀,默認(rèn)為null
//version:數(shù)據(jù)庫(kù)的版本號(hào),從1開(kāi)始涩堤,如果發(fā)生改變眷蜓,onUpgrade方法將會(huì)調(diào)用,4.0之后只能升不能將
super(context, "info.db", null,1);
2.創(chuàng)建這個(gè)幫助類的一個(gè)對(duì)象,調(diào)用getReadableDatabase()方法胎围,會(huì)幫助我們創(chuàng)建打開(kāi)一個(gè)數(shù)據(jù)庫(kù)
3.復(fù)寫(xiě)oncreate和onupgrdate方法:
oncreat e方法是數(shù)據(jù)庫(kù)第一次創(chuàng)建的時(shí)候會(huì)被調(diào)用; 特別適合做表結(jié)構(gòu)的初始化,需要執(zhí)行sql語(yǔ)句吁系;SQLiteDatabase db可以用來(lái)執(zhí)行sql語(yǔ)句
//onUpgrade數(shù)據(jù)庫(kù)版本號(hào)發(fā)生改變時(shí)才會(huì)執(zhí)行德召; 特別適合做表結(jié)構(gòu)的修改
幫助類對(duì)象中的getWritableDatabase 和 getReadableDatabase都可以幫助我們獲取一個(gè)數(shù)據(jù)庫(kù)操作對(duì)象SqliteDatabase.
區(qū)別:
getReadableDatabase:
先嘗試以讀寫(xiě)方式打開(kāi)數(shù)據(jù)庫(kù),如果磁盤(pán)空間滿了汽纤,他會(huì)重新嘗試以只讀方式打開(kāi)數(shù)據(jù)庫(kù)上岗。
getWritableDatabase:
直接以讀寫(xiě)方式打開(kāi)數(shù)據(jù)庫(kù),如果磁盤(pán)空間滿了蕴坪,就直接報(bào)錯(cuò)肴掷。
2 Android下數(shù)據(jù)庫(kù)第一種方式增刪改查
1.創(chuàng)建一個(gè)幫助類的對(duì)象,調(diào)用getReadableDatabase方法背传,返回一個(gè)SqliteDatebase對(duì)象
2.使用SqliteDatebase對(duì)象調(diào)用execSql()做增刪改,調(diào)用rawQuery方法做查詢呆瞻。
******特點(diǎn):增刪改沒(méi)有返回值,不能判斷sql語(yǔ)句是否執(zhí)行成功续室。sql語(yǔ)句手動(dòng)寫(xiě)栋烤,容易寫(xiě)錯(cuò)
private MySqliteOpenHelper mySqliteOpenHelper;
public InfoDao(Context context){
//創(chuàng)建一個(gè)幫助類對(duì)象
mySqliteOpenHelper = new MySqliteOpenHelper(context);
}
public void add(InfoBean bean){
//執(zhí)行sql語(yǔ)句需要sqliteDatabase對(duì)象
//調(diào)用getReadableDatabase方法,來(lái)初始化數(shù)據(jù)庫(kù)的創(chuàng)建
SQLiteDatabase db = mySqliteOpenHelper.getReadableDatabase();
//sql:sql語(yǔ)句, bindArgs:sql語(yǔ)句中占位符的值
db.execSQL("insert into info(name,phone) values(?,?);", new Object[]{bean.name,bean.phone});
//關(guān)閉數(shù)據(jù)庫(kù)對(duì)象
db.close();
}
public void del(String name){
//執(zhí)行sql語(yǔ)句需要sqliteDatabase對(duì)象
//調(diào)用getReadableDatabase方法,來(lái)初始化數(shù)據(jù)庫(kù)的創(chuàng)建
SQLiteDatabase db = mySqliteOpenHelper.getReadableDatabase();
//sql:sql語(yǔ)句挺狰, bindArgs:sql語(yǔ)句中占位符的值
db.execSQL("delete from info where name=?;", new Object[]{name});
//關(guān)閉數(shù)據(jù)庫(kù)對(duì)象
db.close();
}
public void update(InfoBean bean){
//執(zhí)行sql語(yǔ)句需要sqliteDatabase對(duì)象
//調(diào)用getReadableDatabase方法,來(lái)初始化數(shù)據(jù)庫(kù)的創(chuàng)建
SQLiteDatabase db = mySqliteOpenHelper.getReadableDatabase();
//sql:sql語(yǔ)句明郭, bindArgs:sql語(yǔ)句中占位符的值
db.execSQL("update info set phone=? where name=?;", new Object[]{bean.phone,bean.name});
//關(guān)閉數(shù)據(jù)庫(kù)對(duì)象
db.close();
}
public void query(String name){
//執(zhí)行sql語(yǔ)句需要sqliteDatabase對(duì)象
//調(diào)用getReadableDatabase方法,來(lái)初始化數(shù)據(jù)庫(kù)的創(chuàng)建
SQLiteDatabase db = mySqliteOpenHelper.getReadableDatabase();
//sql:sql語(yǔ)句, selectionArgs:查詢條件占位符的值,返回一個(gè)cursor對(duì)象
Cursor cursor = db.rawQuery("select _id, name,phone from info where name = ?", new String []{name});
//解析Cursor中的數(shù)據(jù)
if(cursor != null && cursor.getCount() >0){//判斷cursor中是否存在數(shù)據(jù)
//循環(huán)遍歷結(jié)果集丰泊,獲取每一行的內(nèi)容
while(cursor.moveToNext()){//條件薯定,游標(biāo)能否定位到下一行
//獲取數(shù)據(jù)
int id = cursor.getInt(0);
String name_str = cursor.getString(1);
String phone = cursor.getString(2);
System.out.println("_id:"+id+";name:"+name_str+";phone:"+phone);
}
cursor.close();//關(guān)閉結(jié)果集
}
//關(guān)閉數(shù)據(jù)庫(kù)對(duì)象
db.close();
}
3 Android下另外一種增刪改查方式
1.創(chuàng)建一個(gè)幫助類的對(duì)象,調(diào)用getReadableDatabase方法瞳购,返回一個(gè)SqliteDatebase對(duì)象
2.使用SqliteDatebase對(duì)象調(diào)用insert,update,delete ,query方法做增刪改查话侄。
******特點(diǎn):增刪改有了返回值,可以判斷sql語(yǔ)句是否執(zhí)行成功学赛,但是查詢不夠靈活年堆,不能做多表查詢。所以在公司一般人增刪改喜歡用第二種方式盏浇,查詢用第一種方式变丧。
private MySqliteOpenHelper mySqliteOpenHelper;
public InfoDao(Context context){
//創(chuàng)建一個(gè)幫助類對(duì)象
mySqliteOpenHelper = new MySqliteOpenHelper(context);
}
public boolean add(InfoBean bean){
//執(zhí)行sql語(yǔ)句需要sqliteDatabase對(duì)象
//調(diào)用getReadableDatabase方法,來(lái)初始化數(shù)據(jù)庫(kù)的創(chuàng)建
SQLiteDatabase db = mySqliteOpenHelper.getReadableDatabase();
ContentValues values = new ContentValues();//是用map封裝的對(duì)象,用來(lái)存放值
values.put("name", bean.name);
values.put("phone", bean.phone);
//table: 表名 , nullColumnHack:可以為空绢掰,標(biāo)示添加一個(gè)空行, values:數(shù)據(jù)一行的值 , 返回值:代表添加這個(gè)新行的Id 痒蓬,-1代表添加失敗
long result = db.insert("info", null, values);//底層是在拼裝sql語(yǔ)句
//關(guān)閉數(shù)據(jù)庫(kù)對(duì)象
db.close();
if(result != -1){//-1代表添加失敗
return true;
}else{
return false;
}
}
public int del(String name){
//執(zhí)行sql語(yǔ)句需要sqliteDatabase對(duì)象
//調(diào)用getReadableDatabase方法,來(lái)初始化數(shù)據(jù)庫(kù)的創(chuàng)建
SQLiteDatabase db = mySqliteOpenHelper.getReadableDatabase();
//table :表名, whereClause: 刪除條件, whereArgs:條件的占位符的參數(shù) ; 返回值:成功刪除多少行
int result = db.delete("info", "name = ?", new String[]{name});
//關(guān)閉數(shù)據(jù)庫(kù)對(duì)象
db.close();
return result;
}
public int update(InfoBean bean){
//執(zhí)行sql語(yǔ)句需要sqliteDatabase對(duì)象
//調(diào)用getReadableDatabase方法,來(lái)初始化數(shù)據(jù)庫(kù)的創(chuàng)建
SQLiteDatabase db = mySqliteOpenHelper.getReadableDatabase();
ContentValues values = new ContentValues();//是用map封裝的對(duì)象,用來(lái)存放值
values.put("phone", bean.phone);
//table:表名, values:更新的值, whereClause:更新的條件, whereArgs:更新條件的占位符的值,返回值:成功修改多少行
int result = db.update("info", values, "name = ?", new String[]{bean.name});
//關(guān)閉數(shù)據(jù)庫(kù)對(duì)象
db.close();
return result;
}
public void query(String name){
//執(zhí)行sql語(yǔ)句需要sqliteDatabase對(duì)象
//調(diào)用getReadableDatabase方法,來(lái)初始化數(shù)據(jù)庫(kù)的創(chuàng)建
SQLiteDatabase db = mySqliteOpenHelper.getReadableDatabase();
//table:表名, columns:查詢的列名,如果null代表查詢所有列滴劲; selection:查詢條件, selectionArgs:條件占位符的參數(shù)值,
//groupBy:按什么字段分組, having:分組的條件, orderBy:按什么字段排序
Cursor cursor = db.query("info", new String[]{"_id","name","phone"}, "name = ?", new String[]{name}, null, null, "_id desc");
//解析Cursor中的數(shù)據(jù)
if(cursor != null && cursor.getCount() >0){//判斷cursor中是否存在數(shù)據(jù)
//循環(huán)遍歷結(jié)果集攻晒,獲取每一行的內(nèi)容
while(cursor.moveToNext()){//條件,游標(biāo)能否定位到下一行
//獲取數(shù)據(jù)
int id = cursor.getInt(0);
String name_str = cursor.getString(1);
String phone = cursor.getString(2);
System.out.println("_id:"+id+";name:"+name_str+";phone:"+phone);
}
cursor.close();//關(guān)閉結(jié)果集
}
//關(guān)閉數(shù)據(jù)庫(kù)對(duì)象
db.close();
}
4 數(shù)據(jù)庫(kù)的事務(wù)
事務(wù): 執(zhí)行多條sql語(yǔ)句班挖,要么同時(shí)執(zhí)行成功鲁捏,要么同時(shí)執(zhí)行失敗,不能有的成功萧芙,有的失敗
銀行轉(zhuǎn)賬
//點(diǎn)擊按鈕執(zhí)行該方法
public void transtation(View v){
//1.創(chuàng)建一個(gè)幫助類的對(duì)象
BankOpenHelper bankOpenHelper = new BankOpenHelper(this);
//2.調(diào)用數(shù)據(jù)庫(kù)幫助類對(duì)象的getReadableDatabase創(chuàng)建數(shù)據(jù)庫(kù)碴萧,初始化表數(shù)據(jù)乙嘀,獲取一個(gè)SqliteDatabase對(duì)象去做轉(zhuǎn)賬(sql語(yǔ)句)
SQLiteDatabase db = bankOpenHelper.getReadableDatabase();
//3.轉(zhuǎn)賬,將李四的錢(qián)減200,張三加200
db.beginTransaction();//開(kāi)啟一個(gè)數(shù)據(jù)庫(kù)事務(wù)
try {
db.execSQL("update account set money= money-200 where name=?",new String[]{"李四"});
int i = 100/0;//模擬一個(gè)異常
db.execSQL("update account set money= money+200 where name=?",new String[]{"張三"});
db.setTransactionSuccessful();//標(biāo)記事務(wù)中的sql語(yǔ)句全部成功執(zhí)行
} finally {
db.endTransaction();//判斷事務(wù)的標(biāo)記是否成功破喻,如果不成功虎谢,回滾錯(cuò)誤之前執(zhí)行的sql語(yǔ)句
}
}
5 listview 入門(mén)
ListView 是一個(gè)控件,一個(gè)在垂直滾動(dòng)的列表中顯示條目的一個(gè)控件,這些條目的內(nèi)容來(lái)自于一個(gè)ListAdapter 曹质。EditText Button TextView ImageView Checkbox 五大布局婴噩。
1.布局添加Listview
2.找到listview
3.創(chuàng)建一個(gè)子類myAdapter適配器繼承BaseAdapter(適配器類),重寫(xiě) 4個(gè)方法羽德,
int getcount:告訴listview控件要顯示 多少條目
object getview:告訴listview每個(gè)條目顯示的內(nèi)容几莽。
4.創(chuàng)建Adapter的一個(gè)對(duì)象,設(shè)置給listview宅静。
listview.setAdapter(ListAdapter adapter);
6 listview優(yōu)化
adapter中g(shù)etview()方法會(huì)傳進(jìn)來(lái)一個(gè)參數(shù)convertView章蚣,convertView是指曾經(jīng)使用過(guò)的view對(duì)象,可以被重復(fù)使用姨夹,但是在使用前需要判斷是否為空纤垂,不為空直接復(fù)用,并作為getview方法的返回對(duì)象磷账。
TextView view = null;
if(convertView != null){//判斷converView是否為空峭沦,不為空重新使用
view = (TextView) convertView;
}else{
view = new TextView(mContext);//創(chuàng)建一個(gè)textView對(duì)象
}
return view;
7 listview---老虎機(jī)
javaweb mvc
m....mode....javabean
v....view....jsp
c....control...servlet
listview mvc
m....mode....Bean
v....view....listview
c....control...adapter
8 listview顯示原理 (了解)
1.要考慮listview列表顯示的條目數(shù) int getcount()
2.考慮listview列表每個(gè)條目顯示的內(nèi)容 view getview()
3.考慮每個(gè)item的高度逃糟,知道一個(gè)屏幕能顯示多少條目吼鱼,因?yàn)槠聊坏亩鄻踊笮〔灰?
4.還要考慮listview的滑動(dòng),監(jiān)聽(tīng)一個(gè)舊的條目消失绰咽,一個(gè)新的條目顯示菇肃。
9 復(fù)雜listview界面顯示 ,黑馬新聞(***********重要***********)
1.布局寫(xiě)listview
2.找到listview控件對(duì)象
3.把獲取的新聞數(shù)據(jù)封裝到list集合中 ,(在從集合中便利獲取數(shù)據(jù)給myadapter)作為myadapter的顯示數(shù)據(jù),顯示到listView列表的條目上
4.創(chuàng)建一個(gè)子類myadapter繼承BaseAdapter取募。 添加一個(gè)構(gòu)造方法接受list集合數(shù)據(jù) 重寫(xiě)父類的4個(gè)方法
//這里要專門(mén)建立個(gè)包
a.創(chuàng)建一個(gè)構(gòu)造方法
b.重寫(xiě)父適配器的4個(gè)方法
getcount(): 有多少條新聞數(shù)據(jù)琐谤,就有多少個(gè)條目。
getItem方法:將list集合中指定postion上的bean對(duì)象返回
getItemId,直接返回postion
getView():將返回一個(gè)復(fù)雜的布局作為條目的內(nèi)容展示矛辕;并且顯示的數(shù)據(jù)是新聞的信息。
1.復(fù)用convertview付魔,模板代碼聊品。需要判斷是否為空。如果不為空几苍,需要將一個(gè)布局文件轉(zhuǎn)換為view對(duì)象 作為getview的返回對(duì)象翻屈。
if(view.convertView!=null){
view = View.inflater(Context context, int resuorceId,ViewGroup root)
2.找到view上的這些子控件,目的是將list集合中的bean數(shù)據(jù)一一對(duì)應(yīng)設(shè)置/添加 給這些子控件
3.從list集合中獲取postion條目上要顯示的數(shù)據(jù)Bean
4.將獲取的bean中的數(shù)據(jù)設(shè)置/添加給這些子控件對(duì)象
public View getView(int position, View convertView, ViewGroup parent) {
View view = null;
//1.復(fù)用converView優(yōu)化listview,創(chuàng)建一個(gè)view對(duì)象作為getview()的返回值用來(lái)顯示一個(gè)條目
if(convertView != null){
view = convertView;
}else {
//view = View.inflater(Context context, int resuorceId,ViewGroup root)
//context:上下文, resource:要轉(zhuǎn)換成view對(duì)象的layout的id, root:將layout用root(ViewGroup)包一層作為getview的返回值,一般傳null
view = View.inflate(context, R.layout.item_news_layout, null);//將一個(gè)布局文件轉(zhuǎn)換成一個(gè)view對(duì)象
}
//2.獲取view上的子控件對(duì)象 //將從 list集合中獲取的bean數(shù)據(jù)一一對(duì)應(yīng)設(shè)置添加給這些子控件對(duì)象
ImageView item_img_icon = (ImageView) view.findViewById(R.id.item_img_icon);
TextView item_tv_des = (TextView) view.findViewById(R.id.item_tv_des);
TextView item_tv_title = (TextView) view.findViewById(R.id.item_tv_title);
//3. 從list集合中獲取Bean對(duì)象封裝的新聞數(shù)據(jù),對(duì)應(yīng)到postion位置的條目上去顯示
NewsBean newsBean = list.get(position);
//4. 將從bean對(duì)象獲取的數(shù)據(jù),設(shè)置/添加給這些子控件對(duì)象在列表的條目上顯示
item_img_icon.setImageDrawable(newsBean.icon);//設(shè)置imageView的圖片
item_tv_title.setText(newsBean.title);
item_tv_des.setText(newsBean.des);
return view;
}
5.創(chuàng)建一個(gè)自定義myadapter對(duì)象設(shè)置/添加給listview對(duì)象
6.設(shè)置listview列表下的每個(gè)條目item的點(diǎn)擊事件妻坝,當(dāng)點(diǎn)擊條目觸發(fā)事件,調(diào)用執(zhí)行功能方法伸眶,去查看新聞詳情惊窖。
//設(shè)置listview條目的點(diǎn)擊事件//有多個(gè)點(diǎn)擊事件
lv_news1.setOnItemClickListener(this);
lv_news2.setOnItemClickListener(this);
lv_news3 .setOnItemClickListener(this);
// 重寫(xiě)OnItemClicklistener()方法,獲取相應(yīng)每個(gè)條目上的bean對(duì)象數(shù)據(jù)厘贼,最終獲取到url路徑界酒,做Intent跳轉(zhuǎn)
//listview的條目點(diǎn)擊時(shí)會(huì)調(diào)用該方法 parent:代表listviw view:點(diǎn)擊的條目上的那個(gè)view對(duì)象 position:條目的位置 id: 條目的 id
public void onItemClick(AdapterView<?> parent, View view, int position,
long id) {
//需要獲取條目上bean對(duì)象中url做跳轉(zhuǎn)
NewsBean bean = (NewsBean) parent.getItemAtPosition(position);
String url = bean.news_url;
//跳轉(zhuǎn)瀏覽器
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setData(Uri.parse(url));
startActivity(intent);
}
1.布局寫(xiě)listview ok
2.找到listview ok
3.把獲取的新聞數(shù)據(jù)封裝到list集合中 ,目的是為Myadapter適配器提供數(shù)據(jù)展示嘴秸。 ok
4.封裝一個(gè)Adapter類繼承BaseAdatper毁欣,寫(xiě)一個(gè)構(gòu)造方法接受list集合數(shù)據(jù),復(fù)寫(xiě)四個(gè)方法
a.創(chuàng)建一個(gè)構(gòu)造方法 ok
b.封裝getCount方法 ok
c.getView方法: 不ok
1.復(fù)用convertview岳掐,模板代碼,如果不都能空凭疮,需要將一個(gè)布局文件轉(zhuǎn)換為view對(duì)象作為getview的返回對(duì)象。
view = View.inflater(Context context, int resuorceId,ViewGroup root)
2.找到view上的這些子控件串述,目的是將list集合中的bean數(shù)據(jù)一一對(duì)應(yīng)設(shè)置給這些子控件
3.從list集合中獲取postion條目上要顯示的數(shù)據(jù)Bean
4.將獲取的bean中的數(shù)據(jù)設(shè)置給這些子控件
d.getItem方法:將list集合中指定postion上的bean對(duì)象返回
e.getItemId,直接返回postion
5.創(chuàng)建一個(gè)封裝的Adapter對(duì)象执解,設(shè)置給listview ok
6.設(shè)置listview條目的點(diǎn)擊事件 ok
listview.setOnItem....
7.復(fù)寫(xiě)OnItemClicklistener方法,獲取相應(yīng)條目上的bean對(duì)象纲酗,最終獲取到url衰腌,做Intent跳轉(zhuǎn); 不ok
10 將xml布局轉(zhuǎn)換成view對(duì)象的三種方式
1.
//context:上下文, resource:要轉(zhuǎn)換成view對(duì)象的layout的id, root:將layout用root(ViewGroup)包一層作為codify的返回值,一般傳null
//view = View.inflate(context, R.layout.item_news_layout, null);//將一個(gè)布局文件轉(zhuǎn)換成一個(gè)view對(duì)象
2.
//通過(guò)LayoutInflater將xml布局文件 轉(zhuǎn)換成view對(duì)象
//view = LayoutInflater.from(context).inflate(R.layout.item_news_layout, null);
3.
//通過(guò)context獲取系統(tǒng)服務(wù)得到一個(gè)LayoutInflater,通過(guò)LayoutInflater將一個(gè)布局轉(zhuǎn)換為view對(duì)象
LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
view = layoutInflater.inflate(R.layout.item_news_layout, null);
11 arrayadapter (不用看耕姊,知道有這個(gè)玩意就行)
//找到控件
ListView lv_array = (ListView) findViewById(R.id.lv_array);
ListView lv_simple = (ListView) findViewById(R.id.lv_simple);
//創(chuàng)建一個(gè)arrayAdapter
//context , resource:布局id, textViewResourceId:條目布局中 textview控件的id, objects:條目上texitview顯示的內(nèi)容
ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this, R.layout.item_listview_layout, R.id.item_tv_class, classz);
lv_array.setAdapter(arrayAdapter);
12 simpleadapter (不用看桶唐,知道有這個(gè)玩意就行)
//創(chuàng)建一個(gè)simpleAdapter,封裝simpleAdapter的數(shù)據(jù)
ArrayList<Map<String, String>> arrayList = new ArrayList<Map<String,String>>();
HashMap<String, String> hashMap = new HashMap<String, String>();
hashMap.put("class", "C++");
arrayList.add(hashMap);
HashMap<String, String> hashMap1 = new HashMap<String, String>();
hashMap1.put("class", "android");
arrayList.add(hashMap1);
HashMap<String, String> hashMap2 = new HashMap<String, String>();
hashMap2.put("class", "javaEE");
arrayList.add(hashMap2);
//context, data:顯示的數(shù)據(jù), resource:item布局id, from: map中的key, to:布局中的控件id
SimpleAdapter simpleAdapter = new SimpleAdapter(this, arrayList, R.layout.item_listview_layout, new String[]{"class"}, new int[]{R.id.item_tv_class});
lv_simple.setAdapter(simpleAdapter);
13 數(shù)據(jù)庫(kù)的listview的界面顯示 (新聞會(huì)了,這個(gè)就會(huì)了)