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