• Stars
    star
    277
  • Rank 143,252 (Top 3 %)
  • Language
    Kotlin
  • License
    Apache License 2.0
  • Created over 5 years ago
  • Updated about 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

🛠 A small Kotlin library to make shared preferences easy + RxJava and Coroutines support

RxkPrefs

This library provides reactive shared preferences interaction with very little code. It is designed specifically to be used with Kotlin.

Inspiration has been taken from other libraries, but it was written from the ground up on its own.

Android CI Codacy Badge License


Gradle Dependency

Core

Add this to your module's build.gradle file:

dependencies {

  implementation "com.afollestad.rxkprefs:core:2.0.3"
}

Getting Started

The core of the library is the RxkPrefs interface. You can retrieve an instance of this interface with the rxkPrefs method, which takes 3 parameters. One of these parameters is optional (the shared preferences mode).

// Parameter is your Context, like an Activity, uses PreferenceManager#getDefaultSharedPreferences
val myPrefs = rxkPrefs(this)

// First parameter is your Context, like an Activity, the second is a key.
val myPrefs = rxkPrefs(this, "my_prefs")

// The optional third parameter is a mode, it defaults to MODE_PRIVATE above.
// This is like using Context.getSharedPreferences("my_prefs", MODE_PRIVATE)
val myPrefs = rxkPrefs(this, "my_prefs", MODE_PRIVATE)

Retrieving a Preference

With a RxkPrefs instance, you can retrieve preferences. By that, I do not mean the raw value of the preference, but an instance of the Pref interface which provides more functionality.

val myPrefs: RxkPrefs = // ...

// Getting a string preference is as simple as this:
val myString: Pref<String> = myPrefs.string("my_string", "default_value")

// You could omit the second parameter to use the default, default value (empty string)
val myString: Pref<String> = myPrefs.string("my_string")

Interacting with a Preference

Once you have a reference to a preference, there are a few things you can do with them.

val myPref: Pref<Int> = // ...

// The key of the preference - first parameter passed in prefs.integer(...) or any other pref getter
// This is always a String.
val key: String = myPref.key()

// The default value of the preference - second parameter passed in prefs.integer(...) or any other pref getter...
// Or the primitive default, such as an empty string, 0, or false.
val defaultValue: Int = myPref.defaultValue()

// The current value of the preference, or the default value if none.
val currentValue: Int = myPref.get()

// Changes the value of the preference.
myPref.set(1024)

// True if a value has been set, otherwise false.
val isSet: Boolean = myPref.isSet()

// Deletes any existing value for the preference.
myPref.delete()

// These are used by the RxJava and coroutines extensions, but you may find them useful.
myPref.addOnChangedListener { }
myPref.addOnDestroyedListener { }

// Destroys the instance, clearing listeners and anything that could leak memory.
myPref.destroy()

Coroutines Extension

Gradle Dependency

Coroutines

Add this to your module's build.gradle file:

dependencies {
    
  implementation "com.afollestad.rxkprefs:coroutines:2.0.3"
}

As a Flow

You can receive changes to a preference in real-time using a coroutines Flow, specifically a hot flow.

val myPref: Pref<Boolean> = // ...
val flow: Flow<Boolean> = myPref.asFlow()

// One way...
scope.launch {
  flow.collect { println(it) }
}

// Another way...
flow
  .onEach { println(it) }
  .launchIn(scope)

RxJava Extension

Gradle Dependency

RxJava

Add this to your module's build.gradle file:

dependencies {
    
  implementation "com.afollestad.rxkprefs:rxjava:2.0.3"
}

As an Observable

You can receive changes to a preference in real-time using an RxJava Observable.

val myPref: Pref<Long> = // ...
val obs: Observable<Long> = myPref.observe()

val disposable = obs.subscribe { newValue ->
  // use new value
}
// when you no longer want to receive values
sub.dispose()

Further usage of this is more of an RxJava issue and less specific to this library. You should have a basic understanding of what you can do with RxJava and what its use cases are.

As a Consumer

Pref can act as an RxJava Consumer. You can use this to save preference values from the emissions of an Observable.

Say you're using RxBinding to bind Android views to Observables that emit when their value changes, such as a CheckBox:

val myPref: Pref<Boolean> = // ...

RxCompoundButton.checks(yourCheckboxView)
  .subscribe(myPref.asConsumer())

Whenever the checkbox is checked or unchecked, the underlying boolean shared preference is set to true or false automatically.

Basically, it works like this:

val myObs: Observable<String> = // ...
val myConsumer: Consumer<String> = // ...which can be from an instance of Pref

myObs.subscribe(myConsumer)

More Repositories

1

material-dialogs

😍 A beautiful, fluid, and extensible dialogs API for Kotlin & Android.
Kotlin
19,658
star
2

aesthetic

[DEPRECATED]
Kotlin
2,001
star
3

drag-select-recyclerview

👇 Easy Google Photos style multi-selection for RecyclerViews, powered by Kotlin and AndroidX.
Kotlin
1,962
star
4

photo-affix

📷 Stitch your photos together vertically or horizontally easily!
Kotlin
1,006
star
5

material-cab

🚕 An Android & Kotlin library for placing and manipulating Contextual Action Bars in your UI.
Kotlin
984
star
6

assent

🙏 Android Runtime Permissions made easy and compact, for Kotlin and AndroidX. With coroutines support!
Kotlin
853
star
7

ason

[DEPRECATED]: Prefer Moshi, Jackson, Gson, or LoganSquare
Java
759
star
8

recyclical

🚀 An easy-to-use, extensible Kotlin DSL for setting up and manipulating RecyclerViews.
Kotlin
715
star
9

vvalidator

🤖 An easy to use form validator for Kotlin & Android.
Kotlin
657
star
10

mnml

📹 A minimal, beautiful screen recorder for Android.
Kotlin
652
star
11

nock-nock

🚪 Monitor and validate your websites to maintain maximum uptime.
Kotlin
377
star
12

ulfberht

🗡️ A small but powerful & opinionated DI library. Written in Kotlin, and powered by annotation processing.
Kotlin
251
star
13

viewpagerdots

👀 Simple, compact Kotlin library for ViewPager page indicators.
Kotlin
189
star
14

date-picker

📅 Custom responsive date picker widget for Android, written in Kotlin.
Kotlin
159
star
15

library-template-android

A Kotlin + Android library template (with a sample project).
Kotlin
152
star
16

assure

A Kotlin library that makes biometric authentication quick and easy.
Kotlin
68
star
17

arctic-icon-request

An easy to use Icon Request API for Kotlin, with traditional email capabilities plus the Arctic Manager API.
Kotlin
59
star
18

library-template-jvm

A Kotlin/JVM library template (with a sample project).
Kotlin
46
star
19

af.codes

🌐 The source code of my personal website.
HTML
31
star
20

pi-feeder

My WIP Raspberry Pi auto pet feeder system.
CSS
31
star
21

pi-feeder-android

A simple client for my Pi Feeder IoT device. Used for discovery and basic setup, scheduling is left to the web dashboard.
Java
19
star
22

node-deploy

A Git and HTTP powered deployment system for Node.js apps.
JavaScript
8
star
23

web-recording-experiments

Experiments with recording audio and video from the web. This repo is incomplete, right now. I will be adding more.
JavaScript
4
star
24

trifles

JavaScript
3
star
25

color-render

JavaScript
3
star
26

afollestad

2
star