LWUIT 组件中无法识别数字区域设置

发布于 2025-01-08 11:17:06 字数 296 浏览 0 评论 0原文

这是我的标签组件:

Label totalPrice = new Label();
totalPrice.setText(shoppingList.getTotal() + "00 " + "T");

有一个在运行时动态生成的数字部分“getTotal()”,以及其他常量字符串“00 T”。 问题是我应该怎么做才能使这项工作正常进行并使用语言环境资源进行良好的翻译? (我在表组件中也遇到了这个问题)

我试图寻找“Formatter”或类似的东西,但我什么也没找到。

谢谢你们

Here is my label component:

Label totalPrice = new Label();
totalPrice.setText(shoppingList.getTotal() + "00 " + "T");

There's a number part "getTotal()" which generates dynamically in run-time, and other constant strings "00 T".
The question is what should I do to make this work and translates fine with locale resource? (I'm facing this issue in Table components too)

I've tried to look for "Formatter" or anything like that, but I found nothing.

thank you guys

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枕头说它不想醒 2025-01-15 11:17:06

CLDC/MIDP 中没有格式化程序。真的不清楚预期的结果是什么吗?

一般来说,您需要在 j2me 中手动格式化内容。

There are no formatters in CLDC/MIDP. Its really unclear what the expected result is?

Generally you need to format things manually in j2me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文