Sweet-Mother-of-SharedPreferences


Source link: https://github.com/jianastrero/Sweet-Mother-of-SharedPreferences

Sweet-Mother-of-SharedPreferences

The Sweetest way into saving and loading to sharedpreferences

##Installation Add the JitPack repository to your build file then 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.jianastrero:Sweet-Mother-of-SharedPreferences:v1.0' 
}
 

##Usage - Instruction

###Instructions Extend SweetSP then call the super constructor supplying context and the indentifier for this class. and set the subclass instance always to this. then declare public fields. if wanted, you could add setters and getters.

public class StringThingClass extends SweetSP {

public int ctr;
  public String string;

public StringThingClass(Context context) {

super(context, 1);
 //the identifier makes this flexible. if you supply it in your constructor, you can have multiple objects like this with different identifiers. its like the id in sql.

setSubclassInstance(this);

 string="string";

ctr=0;
  
}

public int getCtr() {

return ctr;
  
}

public void setCtr(int ctr) {

this.ctr = ctr;
  
}

public String getString() {

return string;
  
}

public void setString(String string) {

this.string = string;
  
}
 
}
  

####Saving: create an instance of your subclass then call save to save all data into the sqlite database

StringThingClass stringThingClass =new StringThingClass(this);
 stringThingClass.setString("Count: "+ctr);
 stringThingClass.setCtr(ctr);
 stringThingClass.save();
 

####Loading: create an instance of your subclass then call load.

StringThingClass stringThingClass =new StringThingClass(this);
 stringThingClass.load();
 

##Thats it! Now you can easily save and load to your sqlite database with a short and elegant code :)

Resources

Tempo is a Kotlin library for Android to get the current time from multiple sources: SNTP, GPS; or your own time source.

An OpenCV based library for Android to scan (detect and crop) ID documents or Passports.

An infinite scrolling timeline to pick a date.

Full Animation Control on Paths and VectorDrawables.

Smooth UI for Credit Card Entry on Android device, perform check for supported credit card types , pan length and luhn check. Inspired by Uber credit card entry interface.

An annotation processor which implements "Builder pattern" for your java classes using gradle.

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