Kotlin for Android Developers


 Generic preference delegate



Download 1,04 Mb.
Pdf ko'rish
bet116/125
Sana11.08.2021
Hajmi1,04 Mb.
#144654
1   ...   112   113   114   115   116   117   118   119   ...   125
Bog'liq
Kotlin for Android Developers Learn Kotlin the Easy Way While Developing an Android App ( PDFDrive )


2
#ff212121
3
@android:color/black
4
26.3 Generic preference delegate
Now that we are generics experts, why not extending
LongPreference
to be used with any type that
Shared Preferences support? Let’s create a new
Preference
delegate:
1
class Preference(val context: Context, val name: String, val default: T)
2
: ReadWriteProperty {
3
4
val prefs by lazy {
5
context.getSharedPreferences("default", Context.MODE_PRIVATE)
6
}
7
8
override fun getValue(thisRef: Any?, property: KProperty<*>): T {
9
return findPreference(name, default)
10
}


26 Settings Screen
131
11
12
override fun setValue(thisRef: Any?, property: KProperty<*>, value: T) {
13
putPreference(name, value)
14
}
15
...
16
}
This preference is very similar to what we had before. We just substituted the
Long
references with
a generic type
T
, and called to a couple of functions that will do the hard work. These functions
are very simple, though a bit repetitive. They will check the type and use the specific method from
preferences. For instance, the
findPreference
function looks like this:
1
private fun  findPreference(name: String, default: T): T = with(prefs) {
2
val res: Any = when (default) {
3
is Long -> getLong(name, default)
4
is String -> getString(name, default)
5
is Int -> getInt(name, default)
6
is Boolean -> getBoolean(name, default)
7
is Float -> getFloat(name, default)
8
else -> throw IllegalArgumentException(
9
"This type can be saved into Preferences")
10
}
11
12
res as T
13
}
And basically the same for
putPreference
function, but using the preferences editor and saving the
result of
when
at the end, by calling
apply()
:
1
private fun  putPreference(name: String, value: U) = with(prefs.edit()) {
2
when (value) {
3
is Long -> putLong(name, value)
4
is String -> putString(name, value)
5
is Int -> putInt(name, value)
6
is Boolean -> putBoolean(name, value)
7
is Float -> putFloat(name, value)
8
else -> throw IllegalArgumentException("This type can be saved into Pref\
9
erences")
10
}.apply()
11
}
Now update
DelegatesExt
object and you’re done:


26 Settings Screen
132
1
object DelegatesExt {
2
...
3
fun preference(context: Context, name: String, default: T)
4
= Preference(context, name, default)
5
}
After this chapter, the user can now access the settings screen and modify the zip code. That way,
when they return to the main screen, the forecast will automatically be refreshed with the new
information. Check the rest of small tweaks at the repository.



Download 1,04 Mb.

Do'stlaringiz bilan baham:
1   ...   112   113   114   115   116   117   118   119   ...   125




Ma'lumotlar bazasi mualliflik huquqi bilan himoyalangan ©hozir.org 2024
ma'muriyatiga murojaat qiling

kiriting | ro'yxatdan o'tish
    Bosh sahifa
юртда тантана
Боғда битган
Бугун юртда
Эшитганлар жилманглар
Эшитмадим деманглар
битган бодомлар
Yangiariq tumani
qitish marakazi
Raqamli texnologiyalar
ilishida muhokamadan
tasdiqqa tavsiya
tavsiya etilgan
iqtisodiyot kafedrasi
steiermarkischen landesregierung
asarlaringizni yuboring
o'zingizning asarlaringizni
Iltimos faqat
faqat o'zingizning
steierm rkischen
landesregierung fachabteilung
rkischen landesregierung
hamshira loyihasi
loyihasi mavsum
faolyatining oqibatlari
asosiy adabiyotlar
fakulteti ahborot
ahborot havfsizligi
havfsizligi kafedrasi
fanidan bo’yicha
fakulteti iqtisodiyot
boshqaruv fakulteti
chiqarishda boshqaruv
ishlab chiqarishda
iqtisodiyot fakultet
multiservis tarmoqlari
fanidan asosiy
Uzbek fanidan
mavzulari potok
asosidagi multiservis
'aliyyil a'ziym
billahil 'aliyyil
illaa billahil
quvvata illaa
falah' deganida
Kompyuter savodxonligi
bo’yicha mustaqil
'alal falah'
Hayya 'alal
'alas soloh
Hayya 'alas
mavsum boyicha


yuklab olish