Preface In the Android technology circle this year, the words MVP, Dagger2, Rxjava, and Retrofit are very popular. You can find a lot of articles about these technologies in any technical forum you open. Github is also full of open source projects or demos titled "xxxx" based on MVP+Retrofit+RxJava+Dagger2+MaterialDesign. But everyone is so enthusiastic about open-sourcing such projects, and has been doing the same thing over and over again to teach everyone how to use it. Have you ever thought about relying on a third-party library to quickly build such a framework? characteristic
Framework Package Structure Development Notes
Libraries Introduction
1 Development Preparation This framework is suitable for your own customization. It is not uploaded to Jcenter or Maven for the time being. Please download or clone it yourself. 1.1 Importing the framework
1.2 Reference config.build This framework provides a config.gradle file that references a large number of third-party libraries for third-party library version management. Copy config.gradle to the root directory and reference it in the project's ***build.gradle 1.2.1 Using config.build Because it is referenced in ***build.gradle, rootProject.xxx can be used in all build.gradle files of the entire project to use its contents It can also be used to manage some project information, so that multiple modules can directly use one information 1.3 Dependency on Dagger2 This framework is all managed by Dagger2, so it must rely on Dagger2. Find the build.gradle of the app and add the following code
1.4 Configure AndroidManifest 1.4.1 Adding permissions 1.4.2 Configuring Autolayout Meta When using the Autolayout adaptive framework, you must configure the Meta attributes and the width and height of the design. For details, refer to Autolayout 1.4.3 Referencing Glide Custom Attributes This framework uses Glide to load images by default, but provides a manager ImageLoader to provide a unified interface. The strategist mode can easily replace the image loading framework. This framework provides Glide's custom cache configuration information by default. Before using it, reference its custom configuration information
1.5 Obfuscation Since this framework relies on a lot of third-party libraries, all rules have been provided in proguard-rules.pro under arms Module. If you want to use it, please copy it to replace proguard-rules.pro in app Module. When obfuscating, you can modify or add rules according to your needs. Before obfuscating, be sure to add Java Bean and custom components into the rules. 1.6 Version Update ! The package name of the common package must not be modified. For old versions, you need to find the class with the same name as the common package and delete it, then re-install it. New reference to the class in the common package If you obtained this framework by cloning or downloading:
If you obtain this framework by forking it to your own repository, clone or download it:
2 Quick Start 2.1 Inheriting BaseApplication The Application of the new project inherits from BaseApplication and is declared in AndroidManifest 2.1.1 AppComponent The Application life cycle is the same as that of the App, so it is suitable for providing some singleton objects. This framework uses Dagger2 management, so AppComponent is used to provide all global singleton objects. Create the AppComponent interface
2.1.2 ServiceModule ServiceModule provides the Service corresponding to RetrofitApi. These Service objects are injected into ServiceManager (which must inherit BaseServiceManager) in AppComponent for unified management.
2.1.3 CacheModule The Cache layer uses RxCache by default. CacheModule provides Cache objects corresponding to RetrofitApi. These Cache objects are injected into CacheManager (which must inherit BaseCacheManager) in AppComponent for unified management.
2.2 Inheriting BaseActivity Let the base class Activity of the project inherit BaseActivity. BaseActivity injects Presenter by default, so if you want to use Presenter, you must specify the corresponding paradigm and provide the Component required to inject Presenter. 2.3 Inherit BaseFragment Let the base class Fragment of the project inherit BaseFragment. BaseFragment injects Presenter by default, so if you want to use Presenter, you must specify the corresponding paradigm and provide the Component required to inject Presenter. 2.4 MVP in Action Define the business logic MVP and inherit the base class of MVP. Here, you can define the MVP class slightly more roughly, that is, you don’t need to define different MVP classes for each Fragment and Activity (each page). You can use a group of MVP classes according to the same business logic. 2.4.1 Contract Here, according to Google's official MVP project, the MVP interface can be defined in the Contract for easy management. This framework does not need to define the Presenter interface, so the Contract only defines the Model and View interfaces. 2.4.2 View Generally, Activity or Fragment implements the View interface defined in the Contract so that Presenter can call the corresponding method to operate the UI. BaseActivity injects Presenter by default. If you want to use Presenter, you must specify the Presenter type and implement setupActivityComponent to provide the Component and Module required by Presenter. 2.4.3 Model Model implements the Model interface of Contract and inherits BaseModel, specifies the paradigm as ServiceManager and CacheManager defined above, and then obtains the required Service and Cache through the two Managers to provide the required data for Presenter (whether to use cache is up to you to choose) 2.4.4 Presenter Most of the functions of Presenter in MVP are to obtain data from the Model layer interface and display the data by calling the View layer interface. First, implement BasePresenter, specify the Model and View paradigms, and be sure to specify the interfaces defined in the Contract. The Model and View required by Presenter are injected using Dagger2, which is both decoupled and convenient for testing. How to inject? 2.4.5 MVP Module The Module here provides the implementation class of the View and Model interfaces (interfaces defined in the Contract) corresponding to the current business logic. The Model needs the ServiceManager and CacheManager provided in the AppComponent to implement network requests and caches, so it is necessary to get these two Managers through the Component dependency AppComponent 2.4.6 MVP Component It should be noted here that this Component must rely on AppComponent so that it can provide the ServiceManager and CacheManager required by the Model. The inject() method can be used to inject the objects provided in the Module and AppComponent into the corresponding class. The parameters in inject() cannot be interfaces. How to inject?
2.4.7 Dagger Scope In the above code, ActivityScope appears in a large number of Modules and Components. Dagger2 uses Scope to limit the life of objects provided in each Module. Dagger2 only provides one @SingletonScope by default, which is a singleton. This framework provides @ActivityScope and @FragmentScope. If you have other requirements, please implement them yourself. After Module and Component define the same Scope, the life cycle of the objects provided in the Module will be the same as that in the Component (that is, during the Component life cycle, if you need to use the objects provided in the Module, you will only call the @Provide annotated method once to get this object) 2.4.8 MVP Summary In the future, each business logic will repeat these classes, just changing the name. It is worth noting that when you first use MVP, you will feel that there are many more classes for no reason, which is very cumbersome and troublesome. However, when the page code logic becomes more and more, you will find the benefits, clear logic, decoupling, easy team collaboration, easy testing, and easy error location. Therefore, this framework now provides Template to automatically generate code to solve this pain point, allowing developers to use this framework more happily. 3 Function Usage 3.1 App global configuration information (injected using Dagger) GlobeConfigModule uses the builder mode to encapsulate the global configuration information of the App into the Module (using Dagger to inject it into the place where the configuration information is needed). You can configure CacheFile, InterCeptor, etc. Because the builder mode is used, if you have other configuration information that needs to be injected using Dagger, you can directly add it to the Builder without affecting other places.
3.2 Global capture of HTTP requests and responses Pass in GlobeHttpHandler through the GlobeConfigModule.globeHttpHandler() method
3.3 Global error handling and re-execution when errors occur If you need to use Rxjava's global error handling, you need to pass in ResponseErrorListener through the GlobeConfigModule.responseErrorListener() method, and use ErrorHandleSubscriber every time you call subscribe with Rxjava, and pass in the RxErrorHandler provided in AppComponent. This Subscribe has implemented the OnError method by default. If you want to customize it, you can override the OnError method
3.4 Switching the Image Request Framework This framework uses Glide by default to implement the image loading function, and uses ImagerLoader to provide a unified interface. ImagerLoader uses the strategy mode and the builder mode, which can dynamically switch the image framework (for example, switch to Picasso), and the parameters passed in when loading the image can also be expanded at will (the loadImage method does not need to be modified when the parameters need to be expanded, all through the Builder expansion, for example, if you want the internal image loading framework to clear the cache, you only need to define a boolean field, and the internal if|else is based on this field, and other operations are similar)
3.***ndroidEventBus Tag This framework uses AndroidEventBus to implement the event bus. This framework uses annotations to mark target methods and uniformly writes Tag constants to the EventBusTag interface for easy management. If you want to use AndroidEventBus in the current object, please rewrite useEventBus() in the Activity, Fragment, Presenter that you need to use. Return true to indicate use, and return true by default. 3.6 AutoLayout Components This framework uses the AutoLayout framework to achieve control adaptation. To make the components adaptive, this framework must let its parent control remeasure and rewrite LayoutParams. The official only provides three ViewGroups by default, AutoRelativeLayout, AutoLinearLayout, and AutoFrameLayout to implement these operations. To facilitate developers, this framework provides some commonly used AutoLayout components. In the autolayout package under the widget package of the framework, you can make the child controls adaptive by referencing them in xml. It also provides a Template (on the *** page) for generating the Auto series Views required for adaptation. For example, if you need to make the child controls of ScrollView adaptive, use this Template to enter ScrollView to generate AutoScrollView, which can be referenced in xml. 3.7 Customizing PopupWindow The framework provides a custom PopupWindow component CustomPopupWindow in builder mode. After implementing the layout yourself, you can directly use this implementation of PopupWindow. Using the builder mode, you can freely expand custom parameters. 3.8 Quickly implement RecycleView This framework provides DefaultAdapter and BaseHolder base classes to quickly implement Recycleview.
3.9 Permission Management (Adapt to Android 6.0 Permission Management) This framework uses RxPermissions for permission management (adapted to Android 6.0), and provides the PermissionUtil tool class to implement permission requests in one line of code. Detailed explanation of permission management adapted to Android 6.0
3.10 Gradle configuration starts Debug mode In the build.gradle of the main project (app), configure whether to enable printing logs or use LeakCanary and other debugging tools
3.11 AppManager (manages all activities) AppManager is used to manage all Activities. It holds a List of all surviving Activities (onDestroy is not called) and a currently frontmost Activity (onPause is not called). AppManager encapsulates multiple methods that can be easily operated. You can also remotely control all its methods through EventBus without holding AppManager. In this way, we can perform global operations on any Activity anywhere in the entire app. For example, when the app request network times out, let the frontmost Activity display the connection timeout interaction page (this logic does not need to be written into the currently requested Activity, and can be globally unified in a singleton class, because the current Activity can be obtained at any time through AppManager) Remote control is achieved through EventBus post Message. Different methods and Handlers are distinguished by different whats. Similarly, you can add corresponding methods in AppManager according to your needs. Summarize If you are building a new project, clone (or download) the entire project directly, use Demo as the main module, and then change the project package name to your own package name. Demo contains a package structure that can be used directly. A mainstream MVP+Dagger2+Retrofit+Rxjava framework is easily built successfully. Now you refer to the format of UserActivity under the Demo MVP package, use Template to automatically generate MVP and Dagger2 related classes under the corresponding package, and consult the Wiki document to slowly master this framework. It is better to use it in the project as soon as possible than to read more articles. Learning in practice is always the fastest. |
<<: The pitfalls and tips of Android development
>>: Aite Tribe Stories (2): The Road to Transformation Caused by Chance
Online channels 1. Basics are online The major mo...
[[141699]] Huxiu Note: This article is from The M...
During the Spring Festival, I finished reading Hu...
As early as the early 1980s, Lanier, the founder ...
If you want to do your work well, you must first ...
[[416377]] This article is reprinted from the WeC...
ChinaJoy is highly anticipated, and Touch Educati...
In the process of development, Internet companies...
We know that the composition of a bidding account...
Whether you are doing activities, user operations...
From November 21 to 22, 2014, the 2014 WOT Global...
[[123978]] In material design, images (whether pa...
As of today in 2020, with the rapid rise and matu...
The proposal and origin of the MVVM concept MVVM ...
According to industry insiders, mini programs wil...