Skip to content

Instantly share code, notes, and snippets.

@scarrilho
scarrilho / LiveDataSharedPreferences.kt
Created April 10, 2020 01:22 — forked from er-abhishek-luthra/LiveDataSharedPreferences.kt
LiveData implementation of SharedPreferences in Android. Get value associated in SharedPreferences corresponding to a particular key with an additional ability to observe changes made to shared preferences using LiveData
package com.chargingwatts.livedata.sharedpref;
import android.content.SharedPreferences
import androidx.lifecycle.LiveData
abstract class SharedPreferenceLiveData<T>(val sharedPrefs: SharedPreferences,
val key: String,
val defValue: T) : LiveData<T>() {
init {