Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/meikoz/EasyApp
Browse files Browse the repository at this point in the history
  • Loading branch information
zjlong committed Jun 3, 2016
2 parents d5bc4ee + 5981a9a commit 05bdb29
Showing 1 changed file with 11 additions and 15 deletions.
26 changes: 11 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,20 @@ repositories {

```
dependencies {
compile 'com.github.meikoz:basic:1.4'
compile 'com.github.meikoz:basic:2.0.0'
}
```

Application 初始化IPresenter
```
LogicProxy.getInstance().init(
LoginLogic.class, MainLogic.class, CompeteLogic.class ...);
```

IPresenter 中Implemet关联自己的实现类 extends BaseLogic<T>
```
@Implement(LoginLogicImpl.class)
public interface LoginLogic extends BaseLogic<LoginView> {
void login(String name, String passwrod);
}
```
- 自动轮播图
- LoadingView
- 上拉加载下拉刷新
- 右划关闭页面
- NaviTab底部导航
- 网络请求Retrofit管理类
- 图片加载Glide
- BaseActivity/BaseFragment
- Mvp框架支持
- 统一处理列表页面请求成功逻辑



0 comments on commit 05bdb29

Please sign in to comment.