摘要: 通用viewHolder工具类:public class ViewHolder { // I added a generic return type to reduce the casting noise in client code @SuppressWarnings("uncheck... 阅读全文
posted @ 2014-12-30 23:15 西北野狼 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 今天项目中涉及到对list的排序,特记录于此: 在Java Collection Framework中定义的List实现有Vector,ArrayList和LinkedList。这些集合提供了对对象组的索引访问。他们提供了元素的添加与删除支持。然而,它们并没有内置的元素排序支持。 你能够... 阅读全文
posted @ 2014-12-30 23:06 西北野狼 阅读(317) 评论(0) 推荐(0) 编辑