Prevailer - Orientation Support


Source link: https://github.com/mukeshsolanki/Prevailer-orientation-support-library-for-Android

Prevailer - Orientation Support Android



Prevailer is a simple android library that helps in preserving object instances across orientation change in android and is JAVA 8 and MVP ready.

How to use

Integrating the project is simple a refined all you need to do is follow the below steps

  • Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:
allprojects {

repositories {

  ...
  maven {
 url "https://jitpack.io" 
}

}
 
}
  • Add the dependency
dependencies {

compile 'com.github.mukeshsolanki:Prevailer-orientation-support-library-for-Android:1.0.2' 
}
  • In your Activity / Fragment onCreate call
Prevailer.init(
this, // activity instance
23, // unique id of loader used
new PrevailerFactory<ObjectToBePreserved>() {
 // factory for the instance that should be preserved

 @Override

 public ObjectToBePreserved create() {

  return new MyTypeToBePreserved();

 
}

}
,
new Prevailer.OnInstanceReloadedAction<ObjectToBePreserved>() {

 @Override

 public void performAction(MyTypeToBePreserved instance) {

  // do what needs to be done when reloaded

 
}

}
,
new Prevailer.OnInstanceDestroyedAction() {

 @Override

 public void performAction() {

  // do what needs to be done when destroyed

 
}

}
 );
  • Use with JAVA 8
Prevailer.init(this, 23,

  (PrevailerFactory<MyTypeToBePreserved>) () -> new ObjectToBePreserved(),

  (Prevailer.OnInstanceReloadedAction<ObjectToBePreserved>) instance -> {

// do what needs to be done when reloaded

  
}
,

  (Prevailer.OnInstanceDestroyedAction) () -> {

// do what needs to be done when destroyed

  
}
 );

Why do we need Prevailer

The need for prevailer has been around from a very long time the developers in the android community have been fighting this issue from a really long time. Prevailer works with MVP approach making development easy in case where the presenters had to be maintained or kept alive when the orientation changed.

How does it work

Prevailer uses Android Loader API under the hood. On Android platform, Loaders framework provides API for asynchronous data loading in Activity or Fragment. However, Loaders has special property of preserving instance of the handled object when it's reloaded. Prevailer benefits from that to provide simple way of caching (preserving) instances of objects that mustn't be destroyed during orientation changes. Preserved instances are destroyed when the activity holding them is abandoned and no longer used.

Resources

A Beautiful Material color picker view for Android.

Identical remake of Chroma in Java instead of Kotlin, so it is much more lightweight for using in kotlin-less apps.

Intellij plugin that jumps to the pull request page (or GitHub commits page).

Draws debug grid over activities in android application.

With DrawMe you can easily create views with custom background shapes using only XML layout files.

Registry provides a mechanism for mapping ListView's items to their itemViews. It can generate static code about the item-to-itemView relationship. You'll never care about the item-view-type and view-type-count anymore. They can be counting by Registry automatically.

SnackbarBuilder provides a builder pattern that not only makes Snackbars easier to create, but it also provides some extra customisations.

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