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