We added X to the Moxy for make this library coolest.
Moxy is a library that helps to use MVP pattern when you do the Android Application. _Without problems of lifecycle and boilerplate code!
See what's happening here in the wiki.
- We support androidX
- We don't support GLOBAL and WEAK presenter type
- We have one more strategy than core project, AddToEndSingleTagStrategy
RoadMap
- We will change the template for android studio (and Intellij), the templates will create a view interface and activity or fragment into one file, and this file and presenter keep into one package. We will remove template for Java.
Moxy has a few killer features in other ways:
- Presenter stay alive when Activity recreated(it simplify work with multithreading)
- Automatically restore all that user see when Activity recreated(including dynamic content is added)
- Capability to changes of many Views from one Presenter
View interface
interface MainView : MvpView {
fun printLog(msg: String)
}
class MainActivity : MvpAppCompatActivity(), MainView {
@InjectPresenter
internal lateinit var presenter: MainPresenter
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
}
override fun printLog(msg: String) {
Log.e(TAG, "printLog : msg : $msg activity hash code : ${hashCode()}")
}
companion object {
const val TAG = "MoxyDebug"
}
}
Presenter
@InjectViewState
class MainPresenter : MvpPresenter<MainView>() {
override fun onFirstViewAttach() {
super.onFirstViewAttach()
Log.e(MainActivity.TAG, "presenter hash code : ${hashCode()}")
viewState.printLog("TEST")
}
}
Here you can see "Github" sample application.
For all information check Moxy Wiki
We will change this template in future In order to avoid boilerplate code creating for binding activity, fragments and its presentation part, we propose to use Android Studio templates for Moxy.
Templates located in /moxy-templates
Telegram channels from original moxy community
Telegram channel (en)
Telegram channel (ru)
References
FAQ
For connection with author of this repository use twitter Twitter
implementation 'tech.schoolhelper:moxy-x:1.7.0'
annotationProcessor 'tech.schoolhelper:moxy-x-compiler:1.7.0'
apply plugin: 'kotlin-kapt'
kapt 'tech.schoolhelper:moxy-x-compiler:1.7.0'
For additional base view classes MvpActivity
and MvpFragment
add this:
implementation 'tech.schoolhelper:moxy-x-android:1.7.0'
If you use AppCompat, use MvpAppCompatActivity
and MvpAppCompatFragment
add this:
implementation 'tech.schoolhelper:moxy-x-app-compat:1.7.0'
If you use AndroidX, use MvpAppCompatActivity
and MvpAppCompatFragment
add this:
implementation 'tech.schoolhelper:moxy-x-androidx:1.7.0'
If you use google material, use MvpBottomSheetDialogFragment
add this:
implementation 'tech.schoolhelper:moxy-x-material:1.7.0'
MoxyX is completely without reflection! No special ProGuard rules required.
The MIT License (MIT)
Copyright (c) 2016 Arello Mobile
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.