真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

AndroidStudio怎樣獲取SQLite數(shù)據(jù)并顯示到ListView上

小編給大家分享一下Android Studio怎樣獲取SQLite數(shù)據(jù)并顯示到ListView上,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

成都創(chuàng)新互聯(lián)是一家業(yè)務(wù)范圍包括IDC托管業(yè)務(wù),網(wǎng)絡(luò)空間、主機(jī)租用、主機(jī)托管,四川、重慶、廣東電信服務(wù)器租用,雙線服務(wù)器托管,成都網(wǎng)通服務(wù)器托管,成都服務(wù)器租用,業(yè)務(wù)范圍遍及中國(guó)大陸、港澳臺(tái)以及歐美等多個(gè)國(guó)家及地區(qū)的互聯(lián)網(wǎng)數(shù)據(jù)服務(wù)公司。

我們?cè)谑褂肔istView的時(shí)候需要和數(shù)據(jù)進(jìn)行綁定,那么問(wèn)題來(lái)了,如何獲取SQLite數(shù)據(jù)庫(kù)中的數(shù)據(jù)并動(dòng)態(tài)的顯示到ListView當(dāng)中呢?其實(shí)過(guò)程很簡(jiǎn)單:首先要獲取SQLite數(shù)據(jù)(當(dāng)然首先你要?jiǎng)?chuàng)建一個(gè)SQLite數(shù)據(jù)庫(kù)并填寫(xiě)了一些數(shù)據(jù)),然后引入ListView控件,最后將數(shù)據(jù)和ListView綁定就好了。

一 獲取SQLite數(shù)據(jù)庫(kù)中的數(shù)據(jù)

SQLite是一個(gè)輕量級(jí)的數(shù)據(jù)庫(kù),它能將數(shù)據(jù)保存到你的手機(jī),但缺點(diǎn)是一旦軟件卸載所有數(shù)據(jù)將一同被銷(xiāo)毀。所以要根據(jù)自己的項(xiàng)目需要選擇性的使用。下面要演示將SQLite中的數(shù)據(jù)提取出來(lái)。

首先定義一個(gè)類(lèi)用來(lái)實(shí)例化數(shù)據(jù)庫(kù)

public class initdate {
  public Bitmap bitmap;
  public String content;
  public String data;
  public initdate (Bitmap bitmap ,String context,String time){
    this.bitmap =bitmap;
    this.content =context;
    this.data =time;
  }
}

創(chuàng)建一個(gè)List對(duì)象用來(lái)存儲(chǔ)數(shù)據(jù)

List list = new ArrayList<>();

獲取SQLite中對(duì)應(yīng)表的數(shù)據(jù)

 DBOpenHelper helper = new DBOpenHelper(getActivity(), "數(shù)據(jù)庫(kù)的名稱(chēng)", null, 1);//創(chuàng)建對(duì)象
    SQLiteDatabase db = helper.getWritableDatabase();
    Cursor c = db.query("表名", null, null, null, null, null, null);
    if (c != null && c.getCount() >= 1) {
      while (c.moveToNext()) {
        list.add(new initdate(base64ToBitmap(c.getString(c.getColumnIndex("字段名1"))), c.getString(c.getColumnIndex("字段名2")),
            c.getString(c.getColumnIndex("字段名3"))));
      }
      c.close();
      db.close();//關(guān)閉數(shù)據(jù)庫(kù)
    }

base64ToBitmap方法用于將String類(lèi)型轉(zhuǎn)換成Bitmap

 public static Bitmap base64ToBitmap(String base64info) {
    byte[] bytes = Base64.decode(base64info, Base64.DEFAULT);
    return BitmapFactory.decodeByteArray(bytes, 0, bytes.length);
  }

二 引入ListView控件

ListView的引入是比較簡(jiǎn)單的,我們可以直接將ListView控件拖拽到xml文件中即可。這里不過(guò)多介紹

 

三 將數(shù)據(jù)和ListView綁定

首先將獲取到的數(shù)據(jù)通過(guò)一個(gè)循環(huán)存放到map對(duì)象中

 for (int i = 0; i < list.size(); i++) {
      Map map = new HashMap();
      map.put("image", list.get(i).bitmap);
      map.put("category", list.get(i).content);
      map.put("money", list.get(i).data);
      listitem.add(map);
    }

    SimpleAdapter adapter = new SimpleAdapter(getActivity()
        , listitem
        , R.layout.fragment_one_item
        , new String[]{"category", "money", "image"}
        , new int[]{R.id.tv_expense_category, R.id.tv_expense_money, R.id.image_expense});
   
    ListView listView = (ListView) v.findViewById(R.id.lv_expense);
    listView.setAdapter(adapter);

    listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {//設(shè)置監(jiān)聽(tīng)器
      @Override
      public void onItemClick(AdapterView parent, View view, int position, long id) {
        Map map = (Map) parent.getItemAtPosition(position);
        Toast.makeText(getActivity(), map.get("category").toString(), Toast.LENGTH_LONG).show();
      }
    });

fragment_one_item.xml




  
  
  

此時(shí)我們已經(jīng)將獲取到的數(shù)據(jù)和ListView進(jìn)行了綁定,我們可以直接運(yùn)行,發(fā)現(xiàn)除了小照片不能顯示外其他的信息都正常顯示。這是由于SimpleAdapter 適配器默認(rèn)使用顯示的圖片資源都是程序內(nèi)的本地資源就是能通過(guò)R.drawable.–得到的,如果我們想要把從數(shù)據(jù)庫(kù)中獲得的Bitmap類(lèi)型的圖片顯示到ListView中就要自己實(shí)現(xiàn)ViewBinder()這個(gè)接口,在里面定義數(shù)據(jù)和視圖的匹配關(guān)系 。

 for (int i = 0; i < list.size(); i++) {
      Map map = new HashMap();
      map.put("image_expense", list.get(i).bitmap);
      map.put("expense_category", list.get(i).content);
      map.put("expense_money", list.get(i).data);
      listitem.add(map);
    }
     SimpleAdapter adapter = new SimpleAdapter(getActivity()
        , listitem
        , R.layout.fragment_one_item
        , new String[]{"expense_category", "expense_money", "image_expense"}
        , new int[]{R.id.tv_expense_category, R.id.tv_expense_money, R.id.image_expense});
    adapter.setViewBinder(new SimpleAdapter.ViewBinder() {

      @Override
      public boolean setViewValue(View view, Object data,
                    String textRepresentation) {
        if ((view instanceof ImageView) & (data instanceof Bitmap)) {
          ImageView iv = (ImageView) view;
          Bitmap bm = (Bitmap) data;
          iv.setImageBitmap(bm);
          return true;
        }
        return false;
      }
    });
    ListView listView = (ListView) v.findViewById(R.id.lv_expense);
    listView.setAdapter(adapter);

    listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {//設(shè)置監(jiān)聽(tīng)器
      @Override
      public void onItemClick(AdapterView parent, View view, int position, long id) {
        Map map = (Map) parent.getItemAtPosition(position);
        Toast.makeText(getActivity(), map.get("expense_category").toString(), Toast.LENGTH_LONG).show();
      }
    });

此時(shí)照片資源也能正常顯示了。

以上是“Android Studio怎樣獲取SQLite數(shù)據(jù)并顯示到ListView上”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)站標(biāo)題:AndroidStudio怎樣獲取SQLite數(shù)據(jù)并顯示到ListView上
文章路徑:http://weahome.cn/article/pjjcdd.html

其他資訊

在線咨詢(xún)

微信咨詢(xún)

電話咨詢(xún)

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部