Skip to content

changwilling/ZhuangbiMaster

 
 

Repository files navigation

MVP + Retrofit + RxJava + RxAndroid实战项目

#项目介绍 MVP + Retrofit + RxJava + RxAndroid结合的实战项目,实现三级缓存,判断缓存过期等。

下面是截图,打开app之前已经把进程杀掉了,而且手机的流量和wifi都关了(注意屏幕顶部的状态栏,可以看到是没有数据交互的)。

可以看到,离线时候的使用跟正常情况下几无区别。

image

#依赖库

    compile 'com.squareup.retrofit2:retrofit:2.0.2'
    compile 'com.squareup.retrofit2:adapter-rxjava:2.0.2'
    compile 'com.squareup.retrofit2:converter-gson:2.0.2'
    compile 'io.reactivex:rxjava:1.1.5'
    compile 'io.reactivex:rxandroid:1.2.0'
    compile 'com.jakewharton:butterknife:8.0.1'
    apt 'com.jakewharton:butterknife-compiler:8.0.1'
    compile 'com.github.bumptech.glide:glide:3.7.0'
    compile 'com.github.chrisbanes.photoview:library:1.2.4'
    compile 'com.android.support:design:23.4.0'
    compile 'com.android.support:cardview-v7:23.4.0'

#项目结构

项目采用MVP的架构,大致如下(第一次画uml图,肯定画的不好,求轻喷):

image

三级缓存设计如下:

image

(上面这张图是android studio自动生成的类结构,不知道你们看的习惯不,反正我是不习惯)

image

这是我自己画的图,将就着看吧~

详细实现请看这里:《泛型模式下的Retrofit + rxJava实现三级缓存》

#推荐阅读

About

泛型模式下的Retrofit + rxJava实现三级缓存

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%