如果数据库特别大,存储的数据特别多,我们把它加载到适配器控件中,很容易出现内存溢出的情况,并且数据加载的速度也会受到影响。所以我们在加载数据的时候,为了解决这个问题,让用户体验更好,我们可以采用分页的形式,每次加载10条,或者20条,当用户去滑动,有查看下一页的需求时,再次查询数据库,进行数据的展示。
要进行数据库分页,我们要用到的就是 limit 子句,如下:
select * from person limit ?,?;
limit 用到两个参数,前者是当前页首数据的下标,后者则是每页显示的数据。
这里我有一个SQLite 数据库文件,有张 PERSON 表,表中数据如下:
我们把它放到模拟器 sdcard 目录下,让我们可以找到。
在讲代码前,我们要先知道实现数据库分页需要什么,总条目(数据库有多少条数据),每页显示条数,总页数,当前页码,有了这些我们就能准确的从数据库中取到数据了。
用 ListView 加载数据先展示第一页的数据,当 ListView 加载完本页数据后再加载下一页。
布局文件
activity_main.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/lv"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
item.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tv_id"
android:layout_weight="1"
android:layout_width="0dp"
android:textSize="20sp"
android:textColor="#aa0000"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:text="_id"/>
<TextView
android:id="@+id/tv_name"
android:layout_weight="1"
android:layout_width="0dp"
android:textSize="20sp"
android:textColor="#00aa00"
android:layout_height=