Android SQLite事务处理结合Listview列表显示功能示例
本文实例讲述了android sqlite事务处理结合listview列表显示功能。分享给大家供大家参考,具体如下:
前面的文章里介绍过事务的特点如原子性,隔离性,一致性,持久性。下面就结合android的sqlite来说下,这次的文章里会把listview也结合起来用。实际上android里的事务和我们数据库里的是一样的。也是开启事务,操作,提交事务。如果出现问题就回滚。
public void transaction(){ sqlitedatabase database=db.getreadabledatabase(); database.begintransaction(); //开启事务 try{ string sql1="update student set username='lili' where userid=2"; string sql2="update student set username='lucy' where userid=3"; database.execsql(sql1); database.execsql(sql2); database.settransactionsuccessful(); //设置事务的状态,这句不写事务就会回滚 }finally{ database.endtransaction(); //结束事务 } }
上面这段代码就是一个简单的事务操作,需要注意的就是要捕获异常,这样事务就会被结束掉可以节约数据库资源。
事务的操作就是这样,下面就介绍下listview的使用,我们理解成列表就可以了。界面如下
我们可以把这个界面拆成2个,主界面就只有“用户id”,“用户名”,“用户住址”也就是列表的头,主界面如下
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" > <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content"> <textview android:layout_width="60dip" android:layout_height="wrap_content" android:text="用户id" /> <textview android:layout_width="60dip" android:layout_height="wrap_content" android:text="用户名" /> <textview android:layout_width="60dip" android:layout_height="wrap_content" android:text="用户住址" /> </linearlayout> <listview android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/listview" /> </linearlayout>
这里的listview要定义一个id提供后面数据绑定使用,含有内容的显示界面也比较简单,也就是几个textview
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="horizontal" android:layout_width="wrap_content" android:layout_height="wrap_content"> <textview android:layout_width="60dip" android:layout_height="wrap_content" android:id="@+id/userid" /> <textview android:layout_width="60dip" android:layout_height="wrap_content" android:id="@+id/username" /> <textview android:layout_width="90dip" android:layout_height="wrap_content" android:id="@+id/address" /> </linearlayout>
这样界面的部分就ok了,接下来就是读取数据了,之后显示在listview中,在这里就提供2种方法来显示数据
(1)方法1
package org.lxh.db; import java.util.*; import org.lxh.service.studentservice; import org.lxh.vo.student; import android.app.activity; import android.database.cursor; import android.os.bundle; import android.view.view; import android.widget.adapterview; import android.widget.adapterview.onitemclicklistener; import android.widget.listview; import android.widget.simpleadapter; import android.widget.simplecursoradapter; import android.widget.toast; public class dbactivity extends activity { private studentservice service; public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.main); this.service=new studentservice(this); listview view=(listview)this.findviewbyid(r.id.listview); list<student> all=this.service.fiandall(); list<hashmap<string,object>> data=new arraylist<hashmap<string,object>>(); //逐个取出元素 iterator<student> it=all.iterator(); student stu=null; while(it.hasnext()){ stu=new student(); stu=it.next(); hashmap<string,object> map=new hashmap<string,object>(); map.put("userid", stu.getuserid()); map.put("username", stu.getusername()); map.put("address", stu.getaddress()); data.add(map); } //数据绑定 simpleadapter adapter=new simpleadapter(this, data, r.layout.listview, new string[]{"userid","username","address"},new int[]{r.id.userid,r.id.username,r.id.address}); view.setadapter(adapter); //添加列表项监听事件 view.setonitemclicklistener(new onitemclicklistener(){ public void onitemclick(adapterview<?> parent, view view,int position, long id) { listview listview=(listview)parent; hashmap<string,object> hash=(hashmap<string,object>)listview.getitematposition(position); toast.maketext(dbactivity.this, hash.get("userid").tostring(), 1).show(); }}); }
这里的数据绑定,使用的是simpleadapter,我们首先要做的就是把数据逐个取出来存入一个hashmap,如下所示
hashmap<string,object> map=new hashmap<string,object>();
这里的hashmap存储的是泛型数据,这个集合的泛型不能随便修改,接下来的工作就是把这个集合当做list的泛型
list<hashmap<string,object>> data=new arraylist<hashmap<string,object>>();
最后要记得把这个map添加到集合里
对于
simpleadapter adapter=new simpleadapter(this, data, r.layout.listview, new string[]{"userid","username","address"},new int[]{r.id.userid,r.id.username,r.id.address}); view.setadapter(adapter);
第四个参数里的"userid","username","address"是map集合里的key,最后一个参数是textview,也就是数据界面里的textview.后面还加了个监听,只要点击textview就会显示用户id,android就会通过textview的位置读取内容。
这里把先读数据的代码先贴出来
public list<student> fiandall(){ list<student> all=new arraylist<student>(); string sql="select * from student"; sqlitedatabase database=db.getreadabledatabase(); //使用getreadabledatabase取得sqlitedatabase cursor cursor=database.rawquery(sql, null); //得到游标,类似resultset student stu; while(cursor.movetonext()){ //移动游标 int id=cursor.getint(cursor.getcolumnindex("userid")); string name=cursor.getstring(cursor.getcolumnindex("username")); string address=cursor.getstring(cursor.getcolumnindex("address")); stu=new student(); stu.setuserid(id); stu.setusername(name); stu.setaddress(address); all.add(stu); } cursor.close(); //关闭游标 return all; }
(2)游标适配器
下面是读数据的代码
public cursor fiandallcursor(){ list<student> all=new arraylist<student>(); string sql="select userid as _id,username,address from student"; sqlitedatabase database=db.getreadabledatabase(); //使用getreadabledatabase取得sqlitedatabase cursor cursor=database.rawquery(sql, null); //得到游标,类似resultset //cursor.close(); //这里不可以关闭游标 return cursor; }
这里为主键的列取了别名是因为android内部建议主键设置为_id,但是不可能每个表的主键的名称都是_id
cursor all=this.service.fiandallcursor(); //使用游标适配器 simplecursoradapter cadapter=new simplecursoradapter(this, r.layout.listview,all, new string[]{"_id","username","address"},new int[]{r.id.userid,r.id.username,r.id.address}); view.setadapter(cadapter); //添加列表项监听事件 view.setonitemclicklistener(new onitemclicklistener(){ public void onitemclick(adapterview<?> parent, view view,int position, long id) { listview listview=(listview)parent; cursor hash=(cursor)listview.getitematposition(position); //取得被点击item的位置 int temp=hash.getint(hash.getcolumnindex("_id")); toast.maketext(dbactivity.this, string.valueof(temp), 1).show(); }});
这里的适配器参数顺序和上面的有点不同,而且第四个参数里的“usernam”,"address"和'_id'都是表的列名。其他地方没太大区别,上面的“_id”也不能写成别的。否则会出错
更多关于android相关内容感兴趣的读者可查看本站专题:《android操作sqlite数据库技巧总结》、《android数据库操作技巧总结》、《android编程之activity操作技巧总结》、《android文件操作技巧汇总》、《android开发入门与进阶教程》、《android资源操作技巧汇总》、《android视图view技巧总结》及《android控件用法总结》
希望本文所述对大家android程序设计有所帮助。
上一篇: 笔记本电脑摔地上硬盘损坏介绍
下一篇: 苹果mac笔记本摄像头无法打开该怎么办?