gpt4 book ai didi

android - 公共(public)内联乐趣 String.toFloat() : Float defined in kotlin. 文本

转载 作者:行者123 更新时间:2023-12-02 13:10:48 26 4
gpt4 key购买 nike

我的 中有此代码DestinationCreateActivity.kt 创建新数据,如何将文本转换为浮点数?
DestinationCreateActivity.kt

newDestination.amount = amount.text.toFloat()
enter image description here
这是我的 activity_destiny_create.xml
<EditText
android:id="@+id/amount"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Amount"
android:imeOptions="actionUnspecified"/>
我的模型
@Field("amount") amount: Float,
这是错误
enter image description here

最佳答案

这里amount.text不是 String但它的CharSequence .因此,您应该将其转换为 String然后转换为 Float :

amount.text.toString().toFloat()

关于android - 公共(public)内联乐趣 String.toFloat() : Float defined in kotlin. 文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62874595/

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