Kotpref


Source link: https://github.com/chibatching/Kotpref

Kotpref

Android SharedPreference delegation for Kotlin.

Install

Kotpref version 2 has destructive changes from version 1

dependencies {

  compile "com.chibatching.kotpref:kotpref:2.2.0"
  compile "com.chibatching.kotpref:initializer:2.2.0" // optional
  compile "com.chibatching.kotpref:enum-support:2.2.0" // optional
  compile "com.chibatching.kotpref:gson-support:2.2.0" // optional 
}

How to use

Declare preference model

object UserInfo : KotprefModel() {

  var gameLevel by enumValuePref(GameLevel.NORMAL)
  var name by stringPref()
  var code by nullableStringPref()
  var age by intPref(default = 14)
  var highScore by longPref()
  var rate by floatPref()
  val prizes by stringSetPref {

val set = TreeSet<String>()

set.add("Beginner")

return@stringSetPref set
  
}
 
}
  enum class GameLevel {

  EASY,
  NORMAL,
  HARD 
}

Set up

Pass the application context to Kotpref

Kotpref.init(context)

or use auto initializer module.

Read and Write

UserInfo.gameLevel = GameLevel.HARD UserInfo.name = "chibatching" UserInfo.code = "DAEF2599-7FC9-49C5-9A11-3C12B14A6898" UserInfo.age = 30 UserInfo.highScore = 49219902 UserInfo.rate = 49.21F UserInfo.prizes.add("Bronze") UserInfo.prizes.add("Silver") UserInfo.prizes.add("Gold")  Log.d(TAG, "Game level: ${
UserInfo.gameLevel
}
") Log.d(TAG, "User name: ${
UserInfo.name
}
") Log.d(TAG, "User code: ${
UserInfo.code
}
") Log.d(TAG, "User age: ${
UserInfo.age
}
") Log.d(TAG, "User high score: ${
UserInfo.highScore
}
") Log.d(TAG, "User rate: ${
UserInfo.rate
}
") UserInfo.prizes.forEachIndexed {
 i, s -> Log.d(TAG, "prize[$i]: ${
s
}
") 
}

Bulk edit

UserInfo.bulk {

  gameLevel = GameLevel.EASY
  name = "chibatching Jr"
  code = "451B65F6-EF95-4C2C-AE76-D34535F51B3B"
  age = 2
  highScore = 3901
  rate = 0.4F
  prizes.clear()
  prizes.add("New Born") 
}
  // Bulk edit uses Editor#apply() method internally. // If you want to apply immediately, you can use blockingBulk instead. UserInfo.blockingBulk {

  gameLevel = GameLevel.EASY 
}

Result shared preference xml

XML file name equals model class name. If model class named UserInfo, XML file name is UserInfo.xml.

<?xml version='1.0' encoding='utf-8' standalone='yes' ?> <map>
  <long name="highScore" value="49219902" />
  <set name="prizes">

<string>Beginner</string>

<string>Bronze</string>

<string>Gold</string>

<string>Silver</string>
  </set>
  <string name="name">chibatching</string>
  <string name="code">DAEF2599-7FC9-49C5-9A11-3C12B14A6898</string>
  <int name="age" value="30" />
  <float name="rate" value="49.21" /> </map>

Options

Change default value

var age: Int by intPref(18)

or

var age: Int by intPref(default = 18)

Change preference key

You can custom preference key or use from string resources.

var useFunc1: Boolean by booleanPref(key = "use_func1") var mode: Int by intPref(default = 1, key = R.string.pref_mode)

Change XML file name

Override kotprefName property.

object UserInfo : KotprefModel() {

  override val kotprefName: String = "user_info"

Change SharedPreference mode

Override kotprefMode property. Default is Context.MODE_PRIVATE.

object UserInfo : KotprefModel() {

  override val kotprefMode: Int = Context.MODE_MULTI_PROCESS

Migration from v1

Change function names providing delegated properties

Kotpref v2 changes function names providing delegated properties.

Example, old stringPrefVar is changed to stringPref.

Separate auto initialization module

If you wish to use auto initialization, you should import initializer module.

License

Copyright 2015-2017 Takao Chiba
  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

RubberStamp is an Android library that makes it easy for you to add a watermark to your images.

Features

  • Add a watermark to your images.
  • It can be text or another image.
  • Multiple ways and features to customize how the watermark looks including attributes like font, color, opacity, size, shadow properties, etc.
  • Flexible API that has multiple pre-defined options to get started quickly.
  • Ability to tile your watermark across an image.

This example describes how use Espresso in Android-Kotlin using MVP, Dagger2, Retrofit.

A set of RxJava2 Extensions to get/set values of SharedPreferences in a super simple way.

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.

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