aisy 的Android版:aisy-android

encn 9年前

aisy 的Android版,目前移植了列表组件和自动回收等,其中列表比Android的ListView更简单易用,更方便扩展,同时支持GridView的功能。

Listoy listoy = new Listoy(getContext());  listoy.setMode(ListoyEnum.MODE_SHOW);  listoy.setLayout(ListoyEnum.LAYOUT_VERTICAL);  listoy.setItemRenderer(Item.class);  listoy.setDataProvider(arr);              ScrollerView scrollerView = new ScrollerView(getContext());     scrollerView.addView(listoy);     addView(scrollerView);     AisyAutoClear用来管理自动回收(默认未启用)     AisyAutoClear.put(obj1);//将未来需要回收的对象放入集合中  AisyAutoClear.put(obj2);     AisyAutoClear.getCurrentAutoClear();//返回最上层的集合     AisyAutoClear.getCurrentAutoClear().clear();//清空此集合中的所有对象

项目主页:http://www.open-open.com/lib/view/home/1432113430661