zoukankan      html  css  js  c++  java
  • 用ListView实现对数据库的内容显示

    用ListView实现对数据库的内容显示

    1. 创建一个触发机制 ---------(作用)将数据读入ArrayList集合中

    MyBase base = new MyBase();

           SQLiteDatabase db = mySQLhelpes.getReadableDatabase();

           Cursor cursor = db.query("inof", null, null, null, null, null, null);

           list = new ArrayList<Fuwu>();

           while(cursor.moveToNext()){   //将数据写入ArrayList中

           Fuwu fuwu = new Fuwu();

               String name =  cursor.getString(cursor.getColumnIndex("name") );

               String num = cursor.getString(cursor.getColumnIndex("number"));

               fuwu.setName(name);

               fuwu.setNum(num);

               list.add(fuwu);

               fuwu  = null;

           }

           db.close();

           MyBase myBase = new MyBase();  //加载适配器

           myBase.notifyDataSetChanged();//刷新适配器

        lv.setAdapter(myBase);

    1. 定义一个ListView-----(作用)把数据从集合中放入ListView中
    2. 找到ListView
    3. 定义一个复杂的BaseAdapeter

    a)      实现方法

    public int getCount() //返回数据的个数

    public View getView(int arg0, View arg1, ViewGroup arg2) //返回view值

    View view = View.inflate(MainActivity.this, R.layout.item, null); //将xml转化为view

        TextView tv_name =  (TextView) view.findViewById(R.id.item_text_1);//得到子孩子

        TextView tv_num =  (TextView)view.findViewById(R.id.item_text_2);

         tv_name.setText(list.get(arg0).getName());//数据载入

         tv_num.setText(list.get(arg0).getNum());

    1. 给ListView设置Adapter
  • 相关阅读:
    Object doesn't support property or method 'flat'
    yapi的部署
    mongoDB 安装
    排序
    直播原理
    文件怎么都删不掉,压缩,命令行都不行
    computed和watch
    docker安装
    跨域问题的解决方案
    一次普通的http请求
  • 原文地址:https://www.cnblogs.com/tangwanzun/p/5702271.html
Copyright © 2011-2022 走看看