文件名称:EndLessListView
- 所属分类:
- JSP源码/Java
- 资源属性:
- [Android] [Java] [源码]
- 上传时间:
- 2014-10-20
- 文件大小:
- 641kb
- 下载次数:
- 0次
- 提 供 者:
- visha*****
- 相关连接:
- 无
- 下载说明:
- 别用迅雷下载,失败请重下,重下不扣分!
介绍说明--下载内容均来自于网络,请自行研究使用
This post explains how to create an endless adapter for a ListView. An endless adapter is an adapter that loads more data when user reaches the ListView end. This kind of adapter is useful when there is a large number of items and we don’t want to show them all to avoid a long loading time. To achieve this goal we will create:
a custom listview
a listener
a custom adapter
In this case the custom adapter is very simple and we can replace it with something more complex or use standard android adapter.
a custom listview
a listener
a custom adapter
In this case the custom adapter is very simple and we can replace it with something more complex or use standard android adapter.
(系统自动生成,下载前可以参看下载内容)
下载文件列表
EndLessListView\.classpath
...............\.project
...............\.settings\org.eclipse.jdt.core.prefs
...............\AndroidManifest.xml
...............\bin\AndroidManifest.xml
...............\...\classes\com\example\endlesslistview\BuildConfig.class
...............\...\.......\...\.......\...............\EndlessListView$ELScrollChangedListener.class
...............\...\.......\...\.......\...............\EndlessListView$OnLoadMoreListener.class
...............\...\.......\...\.......\...............\EndlessListView.class
...............\...\.......\...\.......\...............\MainActivity$1.class
...............\...\.......\...\.......\...............\MainActivity$LoadMore.class
...............\...\.......\...\.......\...............\MainActivity.class
...............\...\.......\...\.......\...............\MyAdapter.class
...............\...\.......\...\.......\...............\R$attr.class
...............\...\.......\...\.......\...............\R$dimen.class
...............\...\.......\...\.......\...............\R$drawable.class
...............\...\.......\...\.......\...............\R$id.class
...............\...\.......\...\.......\...............\R$layout.class
...............\...\.......\...\.......\...............\R$menu.class
...............\...\.......\...\.......\...............\R$string.class
...............\...\.......\...\.......\...............\R$style.class
...............\...\.......\...\.......\...............\R.class
...............\...\jarlist.cache
...............\...\R.txt
...............\gen\com\example\endlesslistview\BuildConfig.java
...............\...\...\.......\...............\R.java
...............\ic_launcher-web.png
...............\libs\android-support-v4.jar
...............\proguard-project.txt
...............\project.properties
...............\res\drawable-hdpi\ic_launcher.png
...............\...\.........mdpi\ic_launcher.png
...............\...\.........xhdpi\ic_launcher.png
...............\...\..........xhdpi\ic_launcher.png
...............\...\layout\activity_main.xml
...............\...\......\list_item.xml
...............\...\menu\main.xml
...............\...\values\dimens.xml
...............\...\......\strings.xml
...............\...\......\styles.xml
...............\...\......-sw600dp\dimens.xml
...............\...\.........720dp-land\dimens.xml
...............\...\.......v11\styles.xml
...............\...\.........4\styles.xml
...............\src\com\example\endlesslistview\EndlessListView.java
...............\...\...\.......\...............\MainActivity.java
...............\...\...\.......\...............\MyAdapter.java
...............\bin\classes\com\example\endlesslistview
...............\...\.......\...\example
...............\gen\com\example\endlesslistview
...............\src\com\example\endlesslistview
...............\bin\classes\com
...............\gen\com\example
...............\src\com\example
...............\bin\classes
...............\...\res
...............\gen\com
...............\res\drawable-hdpi
...............\...\drawable-ldpi
...............\...\drawable-mdpi
...............\...\drawable-xhdpi
...............\...\drawable-xxhdpi
...............\...\layout
...............\...\menu
...............\...\values
...............\...\values-sw600dp
...............\...\values-sw720dp-land
...............\...\values-v11
...............\...\values-v14
...............\src\com
...............\.settings
...............\assets
...............\bin
...............\gen
...............\libs
...............\res
...............\src
EndLessListView