gpt4 book ai didi

android - 如何在 android 的 TextView 中显示双重格式的价格

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:25:46 25 4
gpt4 key购买 nike

我想在 textView 中显示一个价格值,例如:12,199.99 在 Android 的 textview 中。但我将值存储在 double 变量 (12199.99) 中。有没有办法以我想要的格式在 textview 中显示 double?

最佳答案

如果您想使用手机的区域设置将其格式化为 2 位小数,请执行以下操作:

DecimalFormat decimalFormat = new DecimalFormat("#,##0.00");
String formattedValue = decimalFormat.format(yourDoubleValue);
yourTextView.setText(formattedValue);

希望对您有所帮助。

关于android - 如何在 android 的 TextView 中显示双重格式的价格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13976624/

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