我想在{Composable函数中使用LiveData<List<DataClass>>
作为状态的来源。
我无法使用新的@Model注释,我在本次演讲Link(at 32:06)中看到,可以通过调用函数+observe(/* Data */)
使用LiveData,Flow等。
对于问题: 我找不到视频(+ observe())中使用的函数或使用LiveData作为原点的任何其他方式。 如何在@Compose函数中使用LiveData?
Project Gradle:
buildscript {
ext.kotlin_version = '1.3.60-eap-76'
repositories {
google()
jcenter()
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0-alpha04'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
应用gradle:依赖项:
def lifecycle_version = "2.1.0"
def compose_version = "0.1.0-dev02"
// ViewModel and LiveData
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
kapt "androidx.lifecycle:lifecycle-compiler:$lifecycle_version"
androidTestImplementation "androidx.arch.core:core-testing:$lifecycle_version"
implementation "androidx.compose:compose-runtime:$compose_version"
kapt "androidx.compose:compose-compiler:$compose_version"
// Android Compose
implementation "androidx.ui:ui-layout:$compose_version"
implementation "androidx.ui:ui-foundation:$compose_version"
implementation "androidx.ui:ui-framework:$compose_version"
implementation "androidx.ui:ui-tooling:$compose_version"
implementation "androidx.ui:ui-android-text:$compose_version"
implementation "androidx.ui:ui-text:$compose_version"
implementation "androidx.ui:ui-material:$compose_version"
答案 0 :(得分:8)
这是另一种使用状态观察实时数据的方法。有一个扩展功能,只需包含它即可。
在下面添加 gradle 依赖项:
implementation 'androidx.compose.runtime:runtime-livedata:1.0.0-beta01'
现在只需将您的常规 LiveData 转换为状态。
val breedItems by doggoViewModel.liveBreedData().observeAsState()
答案 1 :(得分:3)
+observe
方法尚不可用,但在以后的Jetpack Compose版本中应该可用(或类似的方法)。
如果您想在正式发布之前使用类似的功能,则可以使用我在此博客文章-https://medium.com/swlh/android-mvi-with-jetpack-compose-b0890f5156ac
中找到的此功能。在下面发帖以方便消费
fun <T> observe(data: LiveData<T>) = effectOf<T?> {
val result = +state<T?> { data.value }
val observer = +memo { Observer<T> { result.value = it } }
+onCommit(data) {
data.observeForever(observer)
onDispose { data.removeObserver(observer) }
}
result.value
}
答案 2 :(得分:2)
0.1.0-dev09现在包括ui-livedata
。例如使用here。
答案 3 :(得分:2)
正如一些人已经指出的,您需要将新的依赖项添加到 build.gradle
implementation 'androidx.compose.runtime:runtime-livedata:1.0.0-beta01'
然后简单地:
val name: String by viewModel.name.observeAsState("")
如果这对您不起作用,请尝试下面的下一个。上面的语法显然是更好的一种,也是推荐的,但对我不起作用。
val nameState: State<String> = viewModel.name.observeAsState("")
nameState.value
另请参阅此处有关状态的文档https://developer.android.com/jetpack/compose/state#viewmodel-state