文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android提高之SQLite分页读取实现方法

2022-06-06 10:23

关注

一般来说,Android自身就包含了常用于嵌入式系统的SQLite,这样就免去了开发者自己移植安装的功夫。SQLite 支持多数SQL92标准,很多常用的SQL命令都能在SQLite上面使用,除此之外Android还提供了一系列自定义的方法去简化对SQLite数据库的操作。不过有跨平台需求的程序还是建议使用标准的SQL语句,毕竟这样容易在多个平台之间进行移植。

先来贴出本文程序运行的结果图:

本文实例程序主要讲解了SQLite的基本用法,如:创建数据库,使用SQL命令查询数据表、插入数据,关闭数据库,以及使用GridView实现了一个分页栏(关于GridView的用法),用于把数据分页显示。

分页栏的pagebuttons.xml的源码如下:


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_height="wrap_content" android:paddingBottom="4dip"
 android:layout_width="fill_parent">
 <TextView android:layout_width="wrap_content"
 android:layout_below="@+id/ItemImage" android:layout_height="wrap_content"
 android:text="TextView01" android:layout_centerHorizontal="true"
 android:id="@+id/ItemText">
 </TextView>
</RelativeLayout> 

main.xml的源码如下:


<?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">
 <Button android:layout_height="wrap_content"
 android:layout_width="fill_parent" android:id="@+id/btnCreateDB"
 android:text="创建数据库"></Button>
 <Button android:layout_height="wrap_content"
 android:layout_width="fill_parent" android:text="插入一串实验数据" android:id="@+id/btnInsertRec"></Button>
 <Button android:layout_height="wrap_content" android:id="@+id/btnClose"
 android:text="关闭数据库" android:layout_width="fill_parent"></Button>
 <EditText android:text="@+id/EditText01" android:id="@+id/EditText01"
 android:layout_width="fill_parent" android:layout_height="256dip"></EditText>
 <GridView android:id="@+id/gridview" android:layout_width="fill_parent"
 android:layout_height="32dip" android:numColumns="auto_fit"
 android:columnWidth="40dip"></GridView>
</LinearLayout>

Java程序源码如下:


package com.testSQLite; 
import java.util.ArrayList; 
import java.util.HashMap; 
import android.app.Activity; 
import android.database.Cursor; 
import android.database.SQLException; 
import android.database.sqlite.SQLiteDatabase; 
import android.os.Bundle; 
import android.util.Log; 
import android.view.View; 
import android.widget.AdapterView; 
import android.widget.AdapterView.OnItemClickListener; 
import android.widget.Button; 
import android.widget.EditText; 
import android.widget.GridView; 
import android.widget.SimpleAdapter; 
public class testSQLite extends Activity { 
   
  Button btnCreateDB, btnInsert, btnClose; 
  EditText edtSQL;//显示分页数据 
  SQLiteDatabase db; 
  int id;//添加记录时的id累加标记,必须全局 
  static final int PageSize=10;//分页时,每页的数据总数 
  private static final String TABLE_NAME = "stu"; 
  private static final String ID = "id"; 
  private static final String NAME = "name"; 
  SimpleAdapter saPageID;// 分页栏适配器 
  ArrayList<HashMap<String, String>> lstPageID;// 分页栏的数据源,与PageSize和数据总数相关 
  @Override 
  public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.main); 
    btnCreateDB = (Button) this.findViewById(R.id.btnCreateDB); 
    btnCreateDB.setOnClickListener(new ClickEvent()); 
    btnInsert = (Button) this.findViewById(R.id.btnInsertRec); 
    btnInsert.setOnClickListener(new ClickEvent()); 
    btnClose = (Button) this.findViewById(R.id.btnClose); 
    btnClose.setOnClickListener(new ClickEvent()); 
    edtSQL=(EditText)this.findViewById(R.id.EditText01); 
    GridView gridview = (GridView) findViewById(R.id.gridview);//分页栏控件 
    // 生成动态数组,并且转入数据 
    lstPageID = new ArrayList<HashMap<String, String>>(); 
    // 生成适配器的ImageItem <====> 动态数组的元素,两者一一对应 
    saPageID = new SimpleAdapter(testSQLite.this, // 没什么解释 
        lstPageID,// 数据来源 
        R.layout.pagebuttons,//XML实现 
        new String[] { "ItemText" }, 
        new int[] { R.id.ItemText }); 
    // 添加并且显示 
    gridview.setAdapter(saPageID); 
    // 添加消息处理 
    gridview.setOnItemClickListener(new OnItemClickListener(){ 
      @Override 
      public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, 
          long arg3) { 
        LoadPage(arg2);//根据所选分页读取对应的数据 
      } 
    }); 
  } 
  class ClickEvent implements View.OnClickListener { 
    @Override 
    public void onClick(View v) { 
      if (v == btnCreateDB) { 
        CreateDB(); 
      } else if (v == btnInsert) { 
        InsertRecord(16);//插入16条记录 
        RefreshPage(); 
      }else if (v == btnClose) { 
        db.close(); 
      } 
    } 
  } 
   
  void LoadPage(int pageID) 
  { 
    String sql= "select * from " + TABLE_NAME +  
    " Limit "+String.valueOf(PageSize)+ " Offset " +String.valueOf(pageID*PageSize); 
    Cursor rec = db.rawQuery(sql, null); 
    setTitle("当前分页的数据总数:"+String.valueOf(rec.getCount())); 
    // 取得字段名称 
    String title = ""; 
    int colCount = rec.getColumnCount(); 
    for (int i = 0; i < colCount; i++) 
      title = title + rec.getColumnName(i) + "   "; 
    // 列举出所有数据 
    String content=""; 
    int recCount=rec.getCount(); 
    for (int i = 0; i < recCount; i++) {//定位到一条数据 
      rec.moveToPosition(i); 
      for(int ii=0;ii<colCount;ii++)//定位到一条数据中的每个字段 
      { 
        content=content+rec.getString(ii)+"   "; 
      } 
      content=content+"/r/n"; 
    } 
    edtSQL.setText(title+"/r/n"+content);//显示出来 
    rec.close(); 
  } 
   
  void CreateDB() { 
    // 在内存创建数据库 
    db = SQLiteDatabase.create(null); 
    Log.e("DB Path", db.getPath()); 
    String amount = String.valueOf(databaseList().length); 
    Log.e("DB amount", amount); 
    // 创建数据表 
    String sql = "CREATE TABLE " + TABLE_NAME + " (" + ID 
        + " text not null, " + NAME + " text not null " + ");"; 
    try { 
      db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME); 
      db.execSQL(sql); 
    } catch (SQLException e) {} 
  } 
   
  void InsertRecord(int n) { 
    int total = id + n; 
    for (; id < total; id++) { 
      String sql = "insert into " + TABLE_NAME + " (" + ID + ", " + NAME 
          + ") values('" + String.valueOf(id) + "', 'test');"; 
      try { 
        db.execSQL(sql); 
      } catch (SQLException e) { 
      } 
    } 
  } 
   
  void RefreshPage() 
  { 
    String sql = "select count(*) from " + TABLE_NAME; 
    Cursor rec = db.rawQuery(sql, null); 
    rec.moveToLast(); 
    long recSize=rec.getLong(0);//取得总数 
    rec.close(); 
    int pageNum=(int)(recSize/PageSize) + 1;//取得分页数 
    lstPageID.clear(); 
    for (int i = 0; i < pageNum; i++) { 
      HashMap<String, String> map = new HashMap<String, String>(); 
      map.put("ItemText", "No." + String.valueOf(i));
      lstPageID.add(map); 
    } 
    saPageID.notifyDataSetChanged(); 
  } 
}

感兴趣的读者可以动手测试一下本实例代码,希望能对大家进行Android项目开发起到一定的参考借鉴作用。

您可能感兴趣的文章:Android操作存放在assets文件夹下SQLite数据库的方法Android获取assets文件夹中的数据并写入SD卡示例Android读取assets目录下的所有图片并显示的方法读写Android中assets目录下的文件的方法详解android读取Assets图片资源保存到SD卡实例Android开发之资源目录assets与res/raw的区别分析android通过jxl读excel存入sqlite3数据库Android编程之SMS读取短信并保存到SQLite的方法Android SQLite操作之大数据处理与同时读写方法Android开发实现读取assets目录下db文件的方法示例


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯