Android MVVM Design Pattern Examples

后端 未结 14 1286
逝去的感伤
逝去的感伤 2020-12-07 07:09

I currently do a lot of WPF development and have started creating some basic Android apps. When creating WPF apps I often use MVVM, normally using Prism, and would like to k

14条回答
  •  太阳男子
    2020-12-07 07:51

    https://github.com/MindorksOpenSource/android-mvvm-architecture

    Android MVVM Architecture: Sample App

    This repository contains a detailed sample app that implements MVVM architecture using Dagger2, Room, RxJava, FastAndroidNetworking, PlaceHolderView and AndroidDebugDatabase

    The app has following packages:

    data: It contains all the data accessing and manipulating components.
    di: Dependency providing classes using Dagger2.
    ui: View classes along with their corresponding ViewModel.
    utils: Utility classes.
    

提交回复
热议问题