展会信息港展会大全

android listview
来源:互联网   发布日期:2015-11-26 13:14:15   浏览:1218次  

导读:一:动态加载listview:android listview 是很常用的组件。如果列表项过于多或者需要从网络上读取内容的话大多app都将其做成动态加载的。下拉刷新或者上拉刷新。如图::...

一:动态加载listview:

android listview 是很常用的组件。如果列表项过于多或者需要从网络上读取内容的话大多app都将其做成动态加载的。下拉刷新或者上拉刷新。

如图:

原来listview本身提供添加删除footerview和headerview的方法,而且可以添加多个:

void

addFooterView(View v)

Add a fixed view to appear at the bottom of the list.

void

addFooterView(View v, Object data,

boolean isSelectable)

Add a fixed view to appear at the bottom of the list.

void

addHeaderView(View v, Object data,

boolean isSelectable)

Add a fixed view to appear at the top of the list.

void

addHeaderView(View v)

Add a fixed view to appear at the top of the list.

注:添加这些东西必须在setadapter之前完成。当然事后可以更改。

删除时调用:

boolean

removeFooterView(View v)

Removes a previously-added footer view.

boolean

removeHeaderView(View v)

Removes a previously-added header view.

而我们并不是想要让这些提示刷新的列表项一直都在,需要根据用户的手势和当前列表项所显示的位置来判断是否隐藏和切换。

幸好api很全名,listview提供了添加滑动监听器的方法:

void

setOnScrollListener(AbsListView.OnScrollListener l)

Set the listener that will receive notifications every time the list scrolls.

其实更准确的说是在他的父类:abslistview中就已经给出此方法。

剩下的就是定义onscrolllistener了

原来其只提供两个方法:

Public Methods

abstract void

onScroll(AbsListView view,

int firstVisibleItem, int visibleItemCount, int totalItemCount)

Callback method to be invoked when the list or grid has been scrolled.

abstract void

onScrollStateChanged(AbsListView view,

int scrollState)

Callback method to be invoked while the list view or grid view is being scrolled.

onscroll就是我们要判断是否要显示footerview或headerview用到的,

第一个参数是监听的view本身,第二个是当前页上所显示的第一个列表项的索引,第三个是本页面上可以显示的item的数量,最后一个参数是指所有列表项的最大值。

由此就可以判断出当前的位置:如果firstVisibleItem + visibleItemCount >= totalItemCount答案是true既意味着用户已经滑动到了最低端,需要设置footerview了,否者就无视用户滑动。

当然在我们判断出应该显示footerview时不能仅仅是显示出来,还要加载接下来的列表项资源,如果是异步下载的话还可以快点,如果是同步的,为了避免加载过长还是建议一次少加载些列表项。

另外

如果是要自己封装好listview的话,方便今后一直使用的话,可以给listview传递一个接口,或者传递给本身一个handler,方便可以通知主程序开始加载。

另外,其实对于onscrollstatechanged()方法也有很大的用途,比如当用户不滑动列表时想要显示一个提示,而滑动列表项时则令其清空。这个方法的第二个参数则是该状态的int值。

参数

Parameters

view

The view whose scroll state is being reported

scrollState

The current scroll state. One of SCROLL_STATE_TOUCH_SCROLL or SCROLL_STATE_IDLE.

二:listview滑动时卡的问题讨论和解决

这些动态的组件都是由一个adapter来填充内容的,如果你在没个列表项的返回中加上一条log之后会发现,其实它是完全动态的。也就是说为了节省内存空间,系统在判读当前状态下显示了多少个列表项,需要显示哪些列表项,与此同时加载所需要的项并且释放无用的项目。每次的滑动(如果滑动到了列表项之间的边界的话)都会在加载些内容,如果列表项的内容过多,或者要实时读取网络中的内容的话就会出现卡的现象。

如果想要解决这个问题需要手动存储已经加载过的内容,再次用到时不用再次加载。

存储的方法可以是多种存入缓存或者存入本地,另外还可以减慢listview对用户划屏速度的响应,从而避免卡顿现象的发生。

三:listview之overscroll

public void setOverscrollFooter (Drawable footer)

Added in API level 9

Sets the drawable that will be drawn below all other list content. This area can become visible when the user overscrolls the list, or when the list's content does not fully fill the container area.

Parameters

footer

The drawable to use

public void setOverscrollHeader (Drawable header)

Added in API level 9

Sets the drawable that will be drawn above all other list content. This area can become visible when the user overscrolls the list.

Parameters

header

The drawable to use

这两个方法都接受一个图片作为参数,这张图片就类似于:

这张图片会位于所有列表项之外。方法中给出了解释:

Sets the drawable that will be drawn below all other list content. This area can become visible when

the user overscrolls the list, Z

赞助本站

人工智能实验室

相关热词: android开发 教程

AiLab云推荐
推荐内容
展开

热门栏目HotCates

Copyright © 2010-2024 AiLab Team. 人工智能实验室 版权所有    关于我们 | 联系我们 | 广告服务 | 公司动态 | 免责声明 | 隐私条款 | 工作机会 | 展会港