teleposter/app/src/main/java/telegra/ph/History.kt

12 lines
397 B
Kotlin
Raw Normal View History

2016-12-21 10:07:08 +00:00
package telegra.ph
import android.content.Context
import android.preference.PreferenceManager
fun Context.getHistory() = PreferenceManager.getDefaultSharedPreferences(this).getStringSet("history", mutableSetOf<String>())
fun Context.addToHistory(entry: String) {
PreferenceManager.getDefaultSharedPreferences(this).edit().putStringSet("history", getHistory().apply {
add(entry)
}).apply()
}