首页 > 数据库 >Android提高第八篇之SQLite分页读取

Android提高第八篇之SQLite分页读取

时间:2023-05-01 14:03:34浏览次数:55  
标签:SQLite String int 第八篇 id new import android Android



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>



本文程序源码如下:


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 {    
    /** Called when the activity is first created. */    
    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();    
            }    
        }    
    
    }    
        
    
    /*  
     * 读取指定ID的分页数据  
     * SQL:Select * From TABLE_NAME Limit 9 Offset 10;  
     * 表示从TABLE_NAME表获取数据,跳过10行,取9行  
     */    
    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) {}    
    }    
    
    /*  
     * 插入N条数据  
     */    
    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提高第八篇之SQLite分页读取_android

  • 大小: 1 MB
  • 查看图片附件

标签:SQLite,String,int,第八篇,id,new,import,android,Android
From: https://blog.51cto.com/u_5454003/6238872

相关文章

  • Android提高第九篇之GridView和SQLite实现分页表格
    上次讲的Android上的SQLite分页读取,只用文本框显示数据而已,这次就讲得更加深入些,实现并封装一个SQL分页表格控件,不仅支持分页还是以表格的形式展示数据。先来看看本文程序运行的动画:这个SQL分页表格控件主要分为“表格区”和“分页栏”这两部分,这两部分都是基于GridView实现的。......
  • Android提高第四篇之Activity+Intent
          Android有三个基础组件Activity,Service和BroadcastReceiver,他们都是依赖Intent来启动。本文介绍的是Activity的生命周期以及针对Activity的Intent使用。       之前的例子一直都是使用Activity,在一个LayoutXML与一个Activity捆绑的情况下可以视为一个Form,......
  • Android提高第十八篇之自定义PopupWindow实现的Menu(TabMenu)
    用过UCWEB-Android版的人都应该对其特殊的menu有印象,把menu做成Tab-Menu(支持分页的Menu),可以容纳比Android传统的menu更丰富的内容(Android的menu超过6项则缩略在[更多]里),本文参考网上的例子(作者:CoffeeCole,email:[email protected]),对例子进行简化以及封装,使其作为一个复......
  • Android Activity界面切换添加动画特效
    在Android2.0之后有了overridePendingTransition(),其中里面两个参数,一个是前一个activity的退出两一个activity的进入。@OverridepublicvoidonCreate(BundlesavedInstanceState){super.onCreate(savedInstanceState);setContentVi......
  • android系统各种音量的获取与设置 以及监听音量变化
    获取系统音量通过程序获取android系统手机的铃声和音量。同样,设置铃声和音量的方法也很简单!设置音量的方法也很简单,AudioManager提供了方法:publicvoidsetStreamVolume(intstreamType,intindex,intflags)其中streamType有内置的常量,去文档里面就可以看到。JAVA代码:AudioManagermAud......
  • SQLite vs Pandas
    AnalysisdetailsFortheanalysis,weranthesixtasks10timeseach,for5differentsamplesizes,foreachof3programs:pandas,sqlite,andmemory-sqlite(wheredatabaseisinmemoryinsteadofondisk).See below forthedefinitionsofeachtask.Ou......
  • android2.3新增API StrictMode介绍
    google在android2.3中新增了StrictModeAPI来设置对一个thread的策略(ui线程或者分线程),它主要检测了读写操作,访问网络,数据库读写等耗时的操作并将其以log或者dialog等形式打印出来。分析这些日志,我们可以尽快找出程序运行缓慢的原因进而优化代码,避免ANR(ApplicationNotRespondin......
  • 一个android的webview的例子
    截图如图所示。核心部分代码packagecom.example.app;importjava.util.ArrayList;importjava.util.HashMap;importjava.util.List;importandroid.support.v7.app.ActionBarActivity;importandroid.support.v7.app.ActionBar;importandroid.support.v4.app.Fragment;......
  • Android手机屏幕锁屏监测
    手机屏幕锁屏和解锁都是会发广播出来的,我们只要用BroadcaseReceiver来监听相应的Action即可,必须动态在代码中注册才能够接受到广播。1.publicvoidonCreate(finalBundlesavedInstanceState){2.finalIntentFilterfilter=newIntentFilter();3.filter......
  • Android常用工具类
    Android常用工具类很好很强大 http://www.trinea.cn/android/android-common-utils/ https://github.com/wyouflf/xUtils Android11个常用工具类:(见附件)......