MCPcopy Index your code
hub / github.com/Evernote/android-state

github.com/Evernote/android-state @v1.4.1

Chat with this repo
repository ↗ · DeepWiki ↗ · release v1.4.1 ↗ · + Follow
673 symbols 1,219 edges 88 files 61 documented · 9%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Android-State

A utility library for Android to save objects in a Bundle without any boilerplate. It uses an annotation processor to wire up all dependencies.

Download

Download the latest library and processor or grab via Gradle:

dependencies {
    implementation 'com.evernote:android-state:1.4.1'
    // Java only project
    annotationProcessor 'com.evernote:android-state-processor:1.4.1'

    // Kotlin with or without Java
    kapt 'com.evernote:android-state-processor:1.4.1'
}

You can read the JavaDoc here.

Usage

It's recommended to turn on a global setting in your Application class to save and restore the instance state of all activities and fragments from the support library. After that you only need to annotate your fields with @State inside of your fragments and activities. You can save any type which can be saved in a Bundle like the String, Serializable, and Parcelable data structures.

public class App extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        StateSaver.setEnabledForAllActivitiesAndSupportFragments(this, true);
    }
}

public class MainActivity extends Activity {

    @State
    public int mValue;

    // ...
}

class MainFragment : Fragment() {

    @State
    var title = "My fragment"
}

If you want to save the state of any other object or didn't turn on the global setting, then you need to use the StateSaver class for manually saving and restoring the instance state.

public class MainActivity extends Activity {

    @State
    public int mValue;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        StateSaver.restoreInstanceState(this, savedInstanceState);
    }

    @Override
    protected void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        StateSaver.saveInstanceState(this, outState);
    }
}

Advanced

You can also save state in a View class.

public class TestView extends View {

    @State
    public int mState;

    public TestView(Context context) {
        super(context);
    }

    @Override
    protected Parcelable onSaveInstanceState() {
        return StateSaver.saveInstanceState(this, super.onSaveInstanceState());
    }

    @Override
    protected void onRestoreInstanceState(Parcelable state) {
        super.onRestoreInstanceState(StateSaver.restoreInstanceState(this, state));
    }
}

It is recommended that saved properties not be private. If a property is private, then a non-private getter and setter method are required. This is especially useful for Kotlin, because properties are private by default and the aforementioned methods are generated by the compiler.

If you want your getter and setter to be used rather than the field value being used directly, the field must be private.

class DemoPresenter : Presenter<DemoView>() {

    @State
    var counter = 0

    // ...
}

Of course, this also works in Java.

public class TitleUpdater {

    @State
    private String mTitle;

    public String getTitle() {
        return mTitle;
    }

    public void setTitle(String title) {
        mTitle = title;
    }
}

If you have a private field and don't want to provide a getter or setter method, then you can fallback to reflection. However, this method is not recommended.

public class ImageProcessor {

    @StateReflection
    private byte[] mImageData;

    // ...
}

A custom bundler can be useful, if a class doesn't implement the Parcelable or Serializable interface, which oftentimes happens with third party dependencies.

public class MappingProvider {

    @State(PairBundler.class)
    public Pair<String, Integer> mMapping;

    public static final class PairBundler implements Bundler<Pair<String, Integer>> {
        @Override
        public void put(@NonNull String key, @NonNull Pair<String, Integer> value, @NonNull Bundle bundle) {
            bundle.putString(key + "first", value.first);
            bundle.putInt(key + "second", value.second);
        }

        @Nullable
        @Override
        public Pair<String, Integer> get(@NonNull String key, @NonNull Bundle bundle) {
            if (bundle.containsKey(key + "first")) {
                return new Pair<>(bundle.getString(key + "first"), bundle.getInt(key + "second"));
            } else {
                return null;
            }
        }
    }
}

Lint

The library comes with Lint rules to verify a correct usage of the library. The lint checks work in Java and Kotlin files.

ProGuard

This library comes with a ProGuard config. No further steps are required, but all necessary rules can be found here.

Icepick

This library is based on Icepick, a great library from Frankie Sardo. However, Icepick is missing some features important to us: it doesn't support properties which is a bummer for Kotlin. Also, Icepick does not support private fields which may break encapsulation. A tool shouldn't force you into this direction.

Since Icepick is implemented in Clojure, we decided that it's better for us to rewrite the annotation processor in Java. Unfortunately, that makes it hard to push our features into Icepick itself. That's why we decided to fork the project.

There are also alternatives for Kotlin like IceKick. We did not want to use two libraries to solve the same problem for two different languages; we wanted to have one solution for all scenarios.

Upgrading to this library from Icepick is easy. The API is the same; only the packages and the class name (i.e. from Icepick to StateSaver) have changed. If Icepick works well for you, then there's no need to upgrade.

License

Copyright (c) 2017 Evernote Corporation.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at

http://www.eclipse.org/legal/epl-v10.html

Files produced by Android-State code generator are not subject to terms
of the Eclipse Public License 1.0 and can be used as set out in the
copyright notice included in the generated files.

Extension points exported contracts — how you extend this code

Bundler (Interface)
Helper interface to save any object inside a Bundle. @param The object class. [8 implementers]
library/src/main/java/com/evernote/android/state/Bundler.java
MyInterface (Interface)
(no doc)
library/src/test/kotlin/com/evernote/android/state/test/TestKotlinComparable.kt
MySerializableInterface (Interface)
(no doc)
library/src/test/kotlin/com/evernote/android/state/test/TestKotlinComparable.kt

Core symbols most depended-on inside this repo

restoreInstanceState
called by 45
library/src/main/java/com/evernote/android/state/StateSaver.java
put
called by 43
library/src/main/java/com/evernote/android/state/Bundler.java
saveInstanceState
called by 35
library/src/main/java/com/evernote/android/state/StateSaver.java
get
called by 34
library/src/main/java/com/evernote/android/state/Bundler.java
isAssignable
called by 6
processor/src/main/java/com/evernote/android/state/StateProcessor.java
putInt
called by 5
library/src/main/java/com/evernote/android/state/InjectionHelper.java
safeGet
called by 4
library/src/main/java/com/evernote/android/state/StateSaverImpl.java
getPropertyFieldName
called by 4
processor/src/main/java/com/evernote/android/state/StateProcessor.java

Shape

Method 540
Class 126
Enum 4
Interface 3

Languages

Java80%
Kotlin20%

Modules by API surface

library/src/test/java/com/evernote/android/state/test/TestTypesProperty.java85 symbols
demo-java-8/src/main/java/com/evernote/android/state/test/java8/TestTypesProperty.java85 symbols
library/src/main/java/com/evernote/android/state/InjectionHelper.java80 symbols
processor/src/main/java/com/evernote/android/state/StateProcessor.java39 symbols
library-lint/src/test/kotlin/com/evernote/android/state/lint/detectors/NonMatchingStateSaverDetectorTest.kt19 symbols
processor/src/test/java/com/evernote/android/state/TestProcessor.java18 symbols
library/src/test/java/com/evernote/android/state/test/BundlingTest.java16 symbols
library/src/test/java/com/evernote/android/state/test/TestPrivateInnerClass.java15 symbols
library/src/test/kotlin/com/evernote/android/state/test/TestKotlinPrivateInnerClass.kt13 symbols
library/src/test/kotlin/com/evernote/android/state/test/TestKotlinComparable.kt13 symbols
library/src/test/java/com/evernote/android/state/test/TestTypes.java11 symbols
library/src/main/java/com/evernote/android/state/AndroidLifecycleCallbacks.java11 symbols

For agents

$ claude mcp add android-state \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact