
android_listview
gh102
这个作者很懒,什么都没留下…
展开
-
listView 添加多个不同的adapter
http://wang-peng1.iteye.com/blog/578411 有时候我们想在listView上分类,或者呢 有时候一行显示两列内容,有时候需要三列内容 ,那怎么实现呢,这里呢就要使用 Java代码 class Section { String caption; Adapter adapter转载 2012-02-23 15:50:37 · 706 阅读 · 0 评论 -
SQLite和ListView的使用 并实现分页
http://www.androidla.net/index.php/2011/05/01/sqlite-listview-page/ 这个小程序是在 Android2.3.3平台上写的,涉及SQLite和ListView的结合使用,以及实现了分页的效果。 先看看最终效果: androidla分页 androidla分页 andro转载 2011-12-30 19:48:05 · 1286 阅读 · 0 评论 -
listview
首先是stackFromBottom属性,这只该属性之后你做好的列表就会显示你列表的最下面,值为true和false android:stackFromBottom="true" 第二是transciptMode属性,需要用ListView或者其它显示大量Items的控件实时跟踪或者查看信息,并且希望最新的条目可以自动滚动到可视范围内。通过设置的控件transcrip转载 2011-10-12 15:11:16 · 586 阅读 · 0 评论 -
向ListView 中添加大数据量解决屏幕刷新“闪”的现象
向listview中添加超过10000条或更多的数据时,如果我们一条条添加,屏幕会闪的厉害,如果我们一次性添加,可能我们要等上很长时间才能出现结果。 为了解决(准确的是减轻)这个问题,我们采用ListView的方法AddRange(),配合BeginUpdate()和EndUpdate()使用。 FillListView() { Int TotalRecord = 1转载 2012-01-04 22:53:45 · 1643 阅读 · 0 评论 -
listview缓存优化
http://blog.youkuaiyun.com/furongkang/article/details/7013177 http://www.itivy.com/android/archive/2011/12/27/eclipse-android-public-lib.html http://blog.youkuaiyun.com/hellogv/article/details/6011934转载 2011-12-30 19:11:52 · 513 阅读 · 0 评论 -
listViewについて
http://guojianhui0906.iteye.com/blog/1183484 http://whoyuhui.iteye.com/blog/1166921 http://whoyuhui.iteye.com/blog/1168461 http://www.iteye.com/topic/401478 http://guocc.iteye.com/blog/12982转载 2011-12-29 15:59:11 · 398 阅读 · 0 评论 -
listview
http://blog.youkuaiyun.com/hellogv/article/details/6075014 http://blog.youkuaiyun.com/dany1202/article/details/6023475 http://zkl-1987.iteye.com/blog/1051311转载 2011-09-06 17:18:28 · 388 阅读 · 0 评论 -
android分页查询功能工具类的实现
http://blog.youkuaiyun.com/jindegegesun/article/details/7287495 在一个项目中,常常需要频繁的分页,所以有必要实现一个封装的类来统一管理实现。 首先看下效果图: 从上图我们可以看出,这里是将listview中的数据通过底下的分页工具实现分页显示。那我们接下来先贴出代码: [html] view转载 2012-02-24 10:12:09 · 4530 阅读 · 1 评论