Lyra


Source link: https://github.com/Fondesa/Lyra

Lyra is an open source library for Android that simplify the save and the restore of Android components' state. Lyra supports automatic save/restore, base coders to serialize/deserialize values in Bundle, caching and retrieval of fields. Lyra includes a flexible API that allows developers to customize any aforementioned behavior.

By default, Lyra uses an internal serializer/deserializer for fields, but also provides a utility library to add serialization/deserialization capabilities of Gson.

Integration

You can download a jar from GitHub's releases page or grab it from jcenter() or mavenCentral(). You can optionally use the dependency lyra-coder-gson if you want to include the Gson coder.

Gradle

dependencies {

  compile 'com.github.fondesa:lyra:1.0.1'
  // Use this dependency if you want to include the Gson coder.
  compile 'com.github.fondesa:lyra-coder-gson:1.0.1' 
}

Maven

<dependency>
<groupId>com.github.fondesa</groupId>
<artifactId>lyra</artifactId>
<version>1.0.1</version>
<type>pom</type> </dependency>

ProGuard

If you are using ProGuard, you need to include the following lines to your proguard configuration file.

-keepclassmembers class * implements com.fondesa.lyra.coder.StateCoder {

  <init>(...); 
}
 -keepclassmembers class ** {

  @com.fondesa.lyra.annotation.SaveState <fields>; 
}

Usage

You have to initialize the Lyra instance in your Application. You can use the short version with only required options:

@Override public void onCreate() {

  super.onCreate();

  // Pass the Application's Context to the instance.
  Lyra.with(this).build();
 
}

Or the full version to customize each component:

@Override public void onCreate() {

  super.onCreate();

  // Create the builder and pass the Application's Context.
  Lyra.Builder builder = Lyra.with(this)

 // Optional, the default is: DefaultCoderRetriever.

 .coderRetriever(new CustomCoderRetriver())

 // Optional, the default is: DefaultFieldsRetriever.

 .fieldsRetriever(new CustomFieldsRetriever());

 // Automatic save state is available only above api 14.
  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {

// Optional, the default will not save the state of the Activities automatically.

builder.autoSaveActivities();

  
}

  // Build the instance.
  builder.build();
 
}

You have to annotate the fields that you want to save with the annotation @SaveState and, if needed, you have to call the methods saveState() and restoreState():

public class MainActivity extends Activity {

  @SaveState
  private int mCount;

@SaveState
  ParcelableModel mModel;

// If you want to use a custom coder, you can specify the class.
  @SaveState(CustomStringCoder.class)
  private String mText;

 @Override
  protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

/* Necessary only if you aren't in an Activity or you  

  haven't specified to auto save Activities in the Lyra instance. */

Lyra.instance().restoreState(this, savedInstanceState);

  
}

 @Override
  protected void onSaveInstanceState(Bundle outState) {

super.onSaveInstanceState(outState);

/* Necessary only if you aren't in an Activity or you  

  haven't specified to auto save Activities in the Lyra instance. */

Lyra.instance().saveState(this, outState);

  
}
 
}

The save/restore of the state is supported also in a custom View. For example:

public class AutoSaveEditText extends AppCompatEditText {

  @SaveState
  CharSequence mText;

@Override
  public Parcelable onSaveInstanceState() {

return Lyra.instance().saveState(this, super.onSaveInstanceState());

  
}

@Override
  public void onRestoreInstanceState(Parcelable state) {

super.onRestoreInstanceState(Lyra.instance().restoreState(this, state));

  
}
 
}

As shown above, you can create your own custom StateCoder. For example, this coder will save/restore a String in Base64:

public class CustomStringCoder implements StateCoder<String> {

  @Override
  public void serialize(@NonNull Bundle state, @NonNull String key, @NonNull String fieldValue) {

try {

 byte[] data = fieldValue.getBytes("UTF-8");

 String base64 = Base64.encodeToString(data, Base64.DEFAULT);

 state.putString(key, base64);

}
 catch (UnsupportedEncodingException ignored) {

}

  
}

@Override
  public String deserialize(@NonNull Bundle state, @NonNull String key) {

String base64 = state.getString(key);

if (base64 == null)

 return null;

 byte[] data = Base64.decode(base64, Base64.DEFAULT);

try {

 return new String(data, "UTF-8");

}
 catch (UnsupportedEncodingException ignored) {

 return null;

}

  
}
 
}

Compatibility

Android SDK: Lyra requires a minimum API level of 9.

Resources

A small Android library to manage one-off operations for API 9 and higher.

Some things should happen once:

  • Users should only get the guided tour once.
  • Release notes should only pop up once every app upgrade.
  • Your app should only phone home to update content once every hour.

FlexibleAdapter for RecyclerView.

One of the popular scaletype configurations used in Android is the "centerCrop". However, it is limited to just center cropping. This usually crops off the faces of people from images that have an aspect ratio height > width.

JCropImageView is a lightweight extension of the centercrop feature to provide additional control over how the images are displayed.

A simple QRCode generation api for java built on top ZXING.

The utilities provided here allow for automatic unsubscription from sequences based on Activity or Fragment lifecycle events. This capability is useful in Android, where incomplete subscriptions can cause memory leaks.

With Carpaccio, your views became smarter, instead of calling functions on views, now your views can call functions! You no longer need to extend a view to set a custom behavior.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes