gpt4 book ai didi

android - 如何设置 EditText 的数字格式

转载 作者:太空狗 更新时间:2023-10-29 15:55:35 25 4
gpt4 key购买 nike

我希望在我的 EditText 中显示的数字最多保留 1 位小数且没有前导零,例如25.0 不像 025.0

我该怎么做?

这是在安卓中

最佳答案

您可以使用 DecimalFormat

DecimalFormat format = new DecimalFormat("##.#");
String formattedText = format.format(025.0);
editText.setText(formattedText);

您将在 EditText 中得到 25.0 的结果

关于android - 如何设置 EditText 的数字格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11409979/

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