PreferenceHolder


Source link: https://github.com/MarcinMoskala/PreferenceHolder

PreferenceHolder

Kotlin Android Library, that makes preference usage simple and fun.

To stay up-to-date with news about library

This library is younger brother of KotlinPreferences.

With PreferenceHolder, you can define different preference fields this way:

object Pref: PreferenceHolder() {

  var canEatPie: Boolean by bindToPreferenceField(true) 
}

And use it this way:

if(Pref.canEatPie) //...

Here are other preference definition examples: (see full example and usage)

object UserPref: PreferenceHolder() {

  var canEatPie: Boolean by bindToPreferenceField(true)
  var allPieInTheWorld: Long by bindToPreferenceField(0)

var isMonsterKiller: Boolean? by bindToPreferenceFieldNullable()
  var monstersKilled: Int? by bindToPreferenceFieldNullable()

 // Property with backup is reading stored value in the first usage, 
  // and saving it, in background, each time it is changed.
  var experience: Float? by bindToPropertyWithBackup(-1.0F)

var className: String? by bindToPropertyWithBackupNullable()

// Any type can used if serializer is set. See: Gson serialization
  var character: Character? by bindToPreferenceFieldNullable()
  var savedGame: Game? by bindToPreferenceFieldNullable()

// Single level collections are also supported if serializer is set. See: Gson serialization
  var longList: Map<Int, Long> by bindToPreferenceField(mapOf(0 to 12L, 10 to 143L))
  var propTest: List<Character>? by bindToPropertyWithBackupNullable()
  var elemTest: Set<Elems> by bindToPreferenceField(setOf(Elems.Elem1, Elems.Elem3)) 
}

There must be application Context added to PreferenceHolder companion object. Example:

class App : Application() {

override fun onCreate() {

super.onCreate()

PreferenceHolder.setContext(applicationContext)
  
}
 
}

It it suggested to do it in project Application class. As an alternative, PreferenceHolderApplication can also be added as a name of an application in AndroidManifest: ( example)

android:name="com.marcinmoskala.kotlinpreferences.PreferenceHolderApplication" 

Unit testing components

Library also include test mode:

PreferenceHolder.testingMode = true 

When it is turned on, then all properties are acting just like normal properties without binding to preference field. This allows to make unit tests to presenters and to use cases that are using instance of PreferenceHolder.

Install

To add PreferenceHolder to the project, add to build.gradle file:

dependencies {

  compile "com.marcinmoskala.PreferenceHolder:preferenceholder:1.51" 
}

While library is located on JitPack, remember to add to module build.gradle (unless you already have it):

repositories {

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

Gson serialization

To use Gson serializer, we need to add following dependency:

dependencies {

  compile "com.marcinmoskala.PreferenceHolder:preferenceholder-gson-serializer:1.51" 
}

And specify GsonSerializer as PreferenceHolder serializer:

PreferenceHolder.serializer = GsonSerializer(Gson())

Since then, we can use all types, even one not supported by SharedPreference (like custom objects Character and Game, or collections)

Other libraries

If you like it, remember to leave the star and check out my other libraries:

  • ActivityStarter - Simple Android Library, that provides easy way to start and save state of Activities, Fragments, Services and Receivers with arguments.
  • ArcSeekBar - Good looking curved Android SeekBar
  • VideoPlayView - Custom Android view with video player, loader and placeholder image
  • KotlinAndroidViewBindings - Bindings for properties with simple Kotlin types (Boolean, String) to layout traits (visibility, text).

License

Copyright 2017 Marcin Moska?a  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at
  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

ViewGroup backed by RecyclerView.Adapter = magic

A small library containing a wrapper/helper for the shared preferences of Android with ability to specify default values at top level.

An activity manager for Android.

Develop your Android applications in real-time. The changes you make are automatically applied to your running application. Works with real devices and emulators alike.

Android custom view to show progress of process.

Android toolbar with layout direction support.

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