Android的Jetpack DataStore(alpha07版本)的正确实例创建
Posted
技术标签:
【中文标题】Android的Jetpack DataStore(alpha07版本)的正确实例创建【英文标题】:Proper instance creation of Android's Jetpack DataStore (alpha07 version) 【发布时间】:2021-06-02 14:06:07 【问题描述】:所以在新的 alpha07 版本中,android 放弃了 private val dataStore = context.createDataStore(name = "settings_pref")
,但是他们使用数据存储的新方式对我不起作用。
自从从“androidx.datastore:datastore-core:1.0.0-alpha06”升级到 alpha07 后,我似乎无法在没有红色代码的情况下使我的数据存储语法正常工作(当我添加上下文时出现错误。数据存储。编辑)。同样降级回 alpha06,以前工作的代码现在不再工作(使用 createDataStore)。
我使用的是他们在main page 上的示例,但除了这个之外,他们仍然没有更新他们的示例。
@Singleton
class PreferencesManager @Inject constructor(@ApplicationContext context: Context)
val Context.dataStore: DataStore<Preferences> by preferencesDataStore(name = "settings")
val EXAMPLE_COUNTER = intPreferencesKey("example_counter")
val exampleCounterFlow: Flow<Int> = context.dataStore.data
.map preferences ->
// No type safety.
preferences[EXAMPLE_COUNTER] ?: 0
suspend fun incrementCounter()
context.dataStore.edit settings ->
val currentCounterValue = settings[EXAMPLE_COUNTER] ?: 0
settings[EXAMPLE_COUNTER] = currentCounterValue + 1
如果有人知道问题(或我的错误),我将不胜感激。
【问题讨论】:
那么什么不起作用? +1 现在也登陆了,如果有人知道这个问题,为了清楚起见附上图片@ianhanniballake prnt.sc/10cqim3 @ianhanniballake 基本上是 Abhishek-an 所展示的内容,上下文、数据存储或编辑都显示为未解决的参考。 【参考方案1】:这也让我很吃惊,但我想通了(也就是在成功之前一直猜到):
// Note: This is at the top level of the file, outside of any classes.
private val Context.dataStore by preferencesDataStore("user_preferences")
class UserPreferencesManager(context: Context)
private val dataStore = context.dataStore
// ...
这是针对DataStore<Preferences>
,但如果您需要自定义序列化程序,可以执行以下操作(与旧方法相同的参数):
// Still top level!
private val Context.dataStore by dataStore(
fileName = "user_preferences",
serializer = MyCustomSerializer,
)
【讨论】:
对对对,我也猜到了哈哈,我标记为正确答案 @Alex 知道如何使用 Hilt 实例化它吗? @animusmind 也许试试这个? ***.com/a/66101769/15927514【参考方案2】:我遇到了同样的问题,发现了一个错误:上下文应该是类的成员才能在任何方法中使用它:
private val Context.dataStore by preferencesDataStore("preferences")
class Preferenses(val context: Context) get, set, etc
【讨论】:
以上是关于Android的Jetpack DataStore(alpha07版本)的正确实例创建的主要内容,如果未能解决你的问题,请参考以下文章
Android Jetpack组件 DataStore的使用和简单封装
Android Jetpack组件 DataStore的使用和简单封装
Android的Jetpack DataStore(alpha07版本)的正确实例创建