gpt4 book ai didi

android - 高阶函数作为绑定(bind)适配器的问题

转载 作者:IT老高 更新时间:2023-10-28 13:32:35 26 4
gpt4 key购买 nike

我在尝试使用 Kotlin/Android 数据绑定(bind)将函数作为绑定(bind)适配器中的参数时遇到问题。此示例代码在构建时抛出 e: error: cannot generate view binders java.lang.StackOverflowError,而日志中没有其他有用信息。

这是我的绑定(bind)适配器:

@JvmStatic
@BindingAdapter("onDelayedClick")
fun onDelayedClick(view: View, function: () -> Unit) {
// TODO: Do something
}

XML:

        <View
android:id="@+id/test_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:onDelayedClick="@{() -> viewModel.testFunction()}"/>

我的 ViewModel 中的方法:

fun testFunction() = Unit

我已经为此苦苦挣扎了一段时间,但我没有尝试过任何工作,因此感谢您提供任何帮助。

最佳答案

使用 function: Runnable 代替 function: () -> Unit

Android 的数据绑定(bind)编译器生成 java 代码,您的 kotlin 函数的签名类似于 void testFunction(),因为 kotlin 在从 java 调用时会将 Unit 适配为 void。

另一方面,() -> Unit 看起来像 kotlin.jvm.functions.Function0,它是一个接受 0 个输入并返回 Unit.INSTANCE 的函数。

如您所见,这两个函数签名不匹配,这就是编译失败的原因。

关于android - 高阶函数作为绑定(bind)适配器的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49784193/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com