gpt4 book ai didi

java - 将 BigDecimal 值添加到 editText - Android、Java

转载 作者:行者123 更新时间:2023-12-01 23:06:01 25 4
gpt4 key购买 nike

我有一些编辑文本字段,我想用 BigDecimal 填充它们(或者我允许填充它们的任何数据类型?),如下所示:

<EditText
android:id="@+id/enterTenYear"
style="@style/inputs"
android:layout_width="80dp"
android:layout_height="30dp"
android:layout_above="@+id/customPaymentText"
android:layout_alignRight="@+id/interestRateText"
android:layout_marginBottom="57dp"
android:ems="10"
android:inputType="number|numberDecimal" >
</EditText>

我想设置这个编辑文本字段的值...(BigDecimal):

enterTenYear.setText(amountWithInterest.divide(tenYear));

我应该更改什么enterTenYear.?这里 ? (amountWithInterest.divide(tenYear));使这项工作可行?

我需要转换 BigDecimals 还是什么?

谢谢

最佳答案

您需要将其转换为某种字符序列,例如字符串。调用 .toString() 可能就足够了。

关于java - 将 BigDecimal 值添加到 editText - Android、Java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22740253/

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