如何获取ListView中Item的行数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何获取ListView中Item的行数相关的知识,希望对你有一定的参考价值。
如何获取ListView中Item的行数.............请求支援界面显示的大致效果是 在ListView上显示一些信息,而且每一行都有按顺序排列的编号, 每删除一行 则编号依然是按顺序排列不会打乱 例如删除第三行(1、2、4、5)时 则变成这样的效果(1、2、3、4);
参考技术A 自己写个adapter继承BaseAdapter,重写getView()方法设置行号,行号可以根据getItemId(int position)获得。然后每删除一行后,执行adapter.notifyDataSetChanged(); 参考技术B getCount() How many items are in the data set represented by this Adapter.getItem(int position) Get the data item associated with the specified position in the data set.这是SimpleAdapter的API中介绍的,多看看API,效果会更好 参考技术C 你查看API中 关于BaseAdapter的介绍,里面有相应的方法 参考技术D 可以了吗以上是关于如何获取ListView中Item的行数的主要内容,如果未能解决你的问题,请参考以下文章