首页 > 系统 > Android > 正文

sqlite查询结果在listview中展示的实现

2019-12-12 03:07:48
字体:
来源:转载
供稿:网友

1、获取db实例

SQLiteDatabase db=dbhelper.getWritableDatabase(); 

2、Cursord对象获取查询结构

Cursor cursor=db.rawQuery("select * from good where number>3",null); 

3、新建SimplecursorAdapter对象

SimpleCursorAdapter cursorAdapter=new SimpleCursorAdapter(this, R.layout.golist_item, cursor, new String[]{"_id","name", "price","number"},new int[]{R.id.textView2,R.id.textView3,R.id.textView4,R.id.textView1},CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER); 

simplecusoradapter的构造方法有6个参数(上下文环境,listview布局文件,游标,列名(new string[]{}),显示内容(new int[]{}),flag设置监听)

4、setadapter(cursorAdapter);

以上这篇sqlite查询结果在listview中展示的实现就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持武林网。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表