1
0
mirror of https://github.com/WuXiaolong/AndroidMVPSample.git synced 2025-12-20 10:35:41 +08:00
This commit is contained in:
WuXiaolong
2015-09-23 16:52:12 +08:00
parent 0d64ec76d7
commit 9665626b86
6 changed files with 44 additions and 4 deletions

View File

@@ -12,6 +12,7 @@ import cz.msebera.android.httpclient.Header;
/**
* Created by WuXiaolong on 2015/9/23.
* 业务具体处理
*/
public class MainPresenter implements Presenter<MainView> {
private MainView mMainView;

View File

@@ -4,9 +4,12 @@ import com.wuxiaolong.androidmvpsample.model.MainModel;
/**
* Created by WuXiaolong on 2015/9/23.
* 处理业务需要哪些方法
*/
public interface MainView {
void showData(MainModel mainModel);
void showProgress();
void hideProgress();
}