All Projects → PicsArt → stateful

PicsArt / stateful

Licence: Apache-2.0 License
Stateful is a Kotlin library which makes Android application development faster and easier.

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to stateful

KotlinMultiplatformAndoridParcelize
Use the Parcelize Annotation of the Kotlin Android Extensions in Kotin Multiplatform projects
Stars: ✭ 16 (-75.76%)
Mutual labels:  kotlin-android-extensions
AmniXTension
A Kotlin extensions + Utils library with Bunch of Help
Stars: ✭ 34 (-48.48%)
Mutual labels:  kotlin-android-extensions
android-commons
Collection of custom utilities for Android development.
Stars: ✭ 19 (-71.21%)
Mutual labels:  kotlin-android-extensions
Kotlin-Animation-DSL
simplify Android animation code by redefining API, use just one third of code to create animation compare to origin Android API
Stars: ✭ 45 (-31.82%)
Mutual labels:  kotlin-android-extensions
ObservableCollections
Observable Collectons for Android Kotlin apps. Observes adds, deletes etc.
Stars: ✭ 19 (-71.21%)
Mutual labels:  kotlin-android-extensions
media-picker
Easy customizable picker for all your needs in Android application
Stars: ✭ 167 (+153.03%)
Mutual labels:  kotlin-android-extensions
AndroidCleanArchitecture
Android Project with clean android architecture contain Dagger, Retrofit, Retrofit, Android archtecture components, LiveData with MVVM architecture
Stars: ✭ 22 (-66.67%)
Mutual labels:  kotlin-android-extensions
awesome-kotlin-libraries-for-android
😎 A curated list of awesome Kotlin libraries for Android.
Stars: ✭ 53 (-19.7%)
Mutual labels:  kotlin-android-extensions
locus-android
An Awesome Kotlin Location library to retrieve location merely in 3 lines of code
Stars: ✭ 280 (+324.24%)
Mutual labels:  kotlin-android-extensions
Kotlin-Extract
Kotlin-Extract
Stars: ✭ 17 (-74.24%)
Mutual labels:  kotlin-android-extensions

Maven Central

Stateful

Stateful is a Kotlin library which makes Android application development faster and easier. It helps you delete all the boilerplate code for saving instance state and lets you forget about saving and restoring your fragment's/activity's state.

Download

Gradle:

implementation 'com.picsart:stateful:1.2.1'

Using Stateful

The most activities look like the following example.

class MySuperCoolActivity : Activity() {
    private var importantNumber: Int = 3
    private var importantNullableNumber: Int? = null
    private var importantFlag: Boolean = false
    ///and many other super important properties


    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        if (savedInstanceState != null) {
            importantNumber = savedInstanceState.getInt("important property key")
            importantFlag = savedInstanceState.getBoolean("important flag key")
            if (savedInstanceState.containsKey("important nullable property key")) {
                importantNullableNumber = savedInstanceState.getInt("important nullable property key")            
            }
            //....
        }
        //some important logic...
    }

    override fun onSaveInstanceState(outState: Bundle) {
        super.onSaveInstanceState(outState)
        outState.putInt("important property key", importantNumber)
        outState.putBoolean("important flag key", importantFlag)
        importantNullableNumber?.let {
            outState.putInt("important nullable property key", it)
        }
        //....
    }

    //some more code..
}

What if I say that you can remove all boilerplate code for saving state with the help of stateful?

class MySuperCoolActivity : Activity(), Stateful by state() {
    private var importantNumber: Int by statefulProperty(3)
    private var importantNullableNumber: Int? by statefulNullableProperty<Int>(null)
    private var importantFlag: Boolean by statefulProperty(false)
    ///and many more super important properties


    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        restore(savedInstanceState)
        //some important logic...
    }

    override fun onSaveInstanceState(outState: Bundle) {
        super.onSaveInstanceState(outState)
        save(outState)
    }

    //some more code..
}

The default implementation is using property names as a key to put them in the bundle. If you want to implement your own logic for a key generation you can extend Stateful interface and use your own implementation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].