• 用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
  • 相关阅读:
    OO设计精要:封装,还是封装(有感于“Why getter and setter methods are evil ”by Allen Holub )
    博客园建议:能否记住在博客园的首页上只显示标题
    戴尔国际英语
    C#代码契约(转)
    C#数组传递和返回
    SecureString
    里氏替换原则
    ASP.NET的Cache(转)
    WCF服务
    C#枚举中的位运算权限分配
  • 原文地址:https://www.cnblogs.com/tangwanzun/p/5702271.html
Copyright © 2020-2023  润新知