LWUIT 组件中无法识别数字区域设置
这是我的标签组件:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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.