在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):MarcinMoskala/PreferenceHolder开源软件地址(OpenSource Url):https://github.com/MarcinMoskala/PreferenceHolder开源编程语言(OpenSource Language):Kotlin 100.0%开源软件介绍(OpenSource Introduction):PreferenceHolderKotlin Android Library, that makes preference usage simple and fun. To stay up-to-date with news about library This library is younger brother of KotlinPreferences. With PreferenceHolder, you can define different preference fields this way: object Pref: PreferenceHolder() {
var canEatPie: Boolean by bindToPreferenceField(true)
} And use it this way: if(Pref.canEatPie) //... Here are other preference definition examples: (see full example and usage) object UserPref: PreferenceHolder() {
var canEatPie: Boolean by bindToPreferenceField(true)
var allPieInTheWorld: Long by bindToPreferenceField(0)
var isMonsterKiller: Boolean? by bindToPreferenceFieldNullable()
var monstersKilled: Int? by bindToPreferenceFieldNullable()
// Property with backup is reading stored value in the first usage,
// and saving it, in background, each time it is changed.
var experience: Float? by bindToPropertyWithBackup(-1.0F)
var className: String? by bindToPropertyWithBackupNullable()
// Any type can used if serializer is set. See: Gson serialization
var character: Character? by bindToPreferenceFieldNullable()
var savedGame: Game? by bindToPreferenceFieldNullable()
// Single level collections are also supported if serializer is set. See: Gson serialization
var longList: Map<Int, Long> by bindToPreferenceField(mapOf(0 to 12L, 10 to 143L))
var propTest: List<Character>? by bindToPropertyWithBackupNullable()
var elemTest: Set<Elems> by bindToPreferenceField(setOf(Elems.Elem1, Elems.Elem3))
} There must be application Context added to PreferenceHolder companion object. Example: class App : Application() {
override fun onCreate() {
super.onCreate()
PreferenceHolder.setContext(applicationContext)
}
} It it suggested to do it in project Application class. As an alternative, PreferenceHolderApplication can also be added as a name of an application in AndroidManifest: (example)
Unit testing componentsLibrary also include test mode:
When it is turned on, then all properties are acting just like normal properties without binding to preference field. This allows to make unit tests to presenters and to use cases that are using instance of PreferenceHolder. InstallTo add PreferenceHolder to the project, add to build.gradle file: dependencies {
compile "com.marcinmoskala.PreferenceHolder:preferenceholder:1.51"
} While library is located on JitPack, remember to add to module build.gradle (unless you already have it): repositories {
maven { url 'https://jitpack.io' }
} Gson serializationTo use Gson serializer, we need to add following dependency: dependencies {
compile "com.marcinmoskala.PreferenceHolder:preferenceholder-gson-serializer:1.51"
} And specify PreferenceHolder.serializer = GsonSerializer(Gson()) Since then, we can use all types, even one not supported by SharedPreference (like custom objects Other librariesIf you like it, remember to leave the star and check out my other libraries:
License
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论