当前位置:酷酷问答>生活百科>android ListView分页展示

android ListView分页展示

2025-01-13 17:29:34 编辑:zane 浏览量:568

android ListView分页展示

的有关信息介绍如下:

android ListView分页展示

ListView提供了丰富的接口和实现,让我们自定义它的展示,如果遇到数据量很大的时候,就需要进行分页展示了。下面通过一个实例学习下

新建一个android项目,名称为ListViewAutoPage,其他参数可以自己配置,点击完成

首先在layout文件夹下声明listviewinfo.xml,作为listView的主要样式。其内容如下:

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

android:id="@+id/listViewInfo"

android:layout_width="fill_parent"

android:layout_height="wrap_content" >

声明列表中各个选项的信息展示,listitem.xml定义在layout文件夹下,其内容如下:

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent">

android:id="@+id/listItem"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:gravity="center"

android:paddingTop="10dp"

android:paddingBottom="10dp"/>

设置“加载更多”按钮的样式文件,loadmore.xml。其内容是:

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

>

热门文章