1
0
mirror of https://github.com/WuXiaolong/AndroidMVPSample.git synced 2025-06-06 13:24:03 +08:00
This commit is contained in:
WuXiaolong 2017-03-14 11:16:26 +08:00
parent 4809166d1a
commit 77bfdb5d4a
17 changed files with 18 additions and 41 deletions

1
.idea/.name generated
View File

@ -1 +0,0 @@
AndroidMVPSample

7
.idea/gradle.xml generated
View File

@ -11,12 +11,7 @@
<option value="$PROJECT_DIR$/app" />
</set>
</option>
<option name="myModules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
<option name="resolveModulePerSourceSet" value="false" />
</GradleProjectSettings>
</option>
</component>

3
.idea/misc.xml generated
View File

@ -43,6 +43,9 @@
<component name="ProjectType">
<option name="id" value="Android" />
</component>
<component name="SvnConfiguration">
<configuration>C:\Users\WuXiaolong\AppData\Roaming\Subversion</configuration>
</component>
<component name="masterDetails">
<states>
<state key="ProjectJDKs.UI">

View File

@ -1,8 +1,10 @@
package com.wuxiaolong.androidmvpsample.mvp.main;
/**
* Created by Administrator
* on 2016/10/19.
* Created by WuXiaolong on 2016/10/19.
* github:https://github.com/WuXiaolong/
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/
public interface BaseView {

View File

@ -4,7 +4,6 @@ package com.wuxiaolong.androidmvpsample.mvp.main;
* Created by WuXiaolong on 2015/9/23.
* 业务具体处理包括负责存储检索操纵数据等
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/

View File

@ -4,10 +4,8 @@ import com.wuxiaolong.androidmvpsample.mvp.other.BasePresenter;
import com.wuxiaolong.androidmvpsample.retrofit.ApiCallback;
/**
* Created by WuXiaolong
* on 2015/9/23.
* Created by WuXiaolong on 2015/9/23.
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/

View File

@ -4,11 +4,10 @@ package com.wuxiaolong.androidmvpsample.mvp.main;
* Created by WuXiaolong on 2015/9/23.
* 处理业务需要哪些方法
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/
public interface MainView extends BaseView{
public interface MainView extends BaseView {
void getDataSuccess(MainModel model);

View File

@ -11,10 +11,8 @@ import rx.subscriptions.CompositeSubscription;
/**
* Created by WuXiaolong
* on 2015/9/23.
* Created by WuXiaolong on 2015/9/23.
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/

View File

@ -8,7 +8,6 @@ import com.wuxiaolong.androidmvpsample.ui.BaseActivity;
/**
* Created by WuXiaolong on 2016/3/30.
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/

View File

@ -10,7 +10,6 @@ import com.wuxiaolong.androidmvpsample.ui.BaseFragment;
/**
* Created by WuXiaolong on 2016/3/30.
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/

View File

@ -7,10 +7,8 @@ import retrofit2.adapter.rxjava.HttpException;
import rx.Subscriber;
/**
* Created by WuXiaolong
* on 2016/9/22.
* Created by WuXiaolong on 2016/9/22.
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/

View File

@ -8,10 +8,8 @@ import retrofit2.http.Path;
import rx.Observable;
/**
* Created by WuXiaolong
* on 2016/3/24.
* Created by WuXiaolong on 2016/3/24.
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/

View File

@ -9,10 +9,8 @@ import retrofit2.adapter.rxjava.RxJavaCallAdapterFactory;
import retrofit2.converter.gson.GsonConverterFactory;
/**
* Created by WuXiaolong
* on 2016/3/24.
* Created by WuXiaolong on 2016/3/24.
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/

View File

@ -5,10 +5,8 @@ import retrofit2.Callback;
import retrofit2.Response;
/**
* Created by WuXiaolong
* on 2016/9/22.
* Created by WuXiaolong on 2016/9/22.
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/

View File

@ -30,10 +30,8 @@ import rx.schedulers.Schedulers;
import rx.subscriptions.CompositeSubscription;
/**
* Created by WuXiaolong
* on 2015/9/23.
* Created by WuXiaolong on 2015/9/23.
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/

View File

@ -16,10 +16,8 @@ import rx.Subscription;
import rx.subscriptions.CompositeSubscription;
/**
* Created by WuXiaolong
* on 2015/9/23.
* Created by WuXiaolong on 2015/9/23.
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/

View File

@ -19,10 +19,8 @@ import retrofit2.Call;
/**
* 由Activity/Fragment实现View里方法包含一个Presenter的引用
* Created by WuXiaolong
* on 2015/9/23.
* Created by WuXiaolong on 2015/9/23.
* github:https://github.com/WuXiaolong/
* weibo:http://weibo.com/u/2175011601
* 微信公众号吴小龙同学
* 个人博客http://wuxiaolong.me/
*/