摘要: ## 优点不需要每个列表都建立Adapter。## 使用效果Item点击事件使用的是[自写的事件机制](http://www.cnblogs.com/zhang740/p/3934887.html)。```javamListAdapter = new BaseListAdapter(mView.ge... 阅读全文
posted @ 2014-08-25 15:12 SuperEVO 阅读(929) 评论(0) 推荐(0) 编辑
摘要: 借助volley、Gson类库。## 优点网络请求集中处理,返回值直接为预期的对象,不需要手动反序列,提高效率,使用时建立好model类即可。## 使用效果```javaDataProess.Request(true, context, Request.Method.GET, DataA... 阅读全文
posted @ 2014-08-25 14:41 SuperEVO 阅读(1430) 评论(0) 推荐(0) 编辑
摘要: 一个很简单方便的事件处理方法。## 使用效果事件发布者:```java//定义事件public static EventTrans AuthFailed = new EventTrans();//事件触发AuthFailed.trigger(this, "内容");```事件处理者:```javaD... 阅读全文
posted @ 2014-08-25 14:27 SuperEVO 阅读(881) 评论(0) 推荐(0) 编辑