Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的表单中有一个 DateField,我希望在关闭(选择)日期弹出窗口中的日期后,字段值以 dd/mm/yyyy 格式显示。如何做到这一点?
如前所述,MIDP 2 没有为此提供 API。
要模拟您描述的行为,必须手动将DateField' 日期转换为字符串,然后将其放入项目标签(按itemStateChanged事件)。
DateField
itemStateChanged
或者,如果不需要让用户在完成一次后选择日期,甚至可以将日期字段替换为StringItem包含该dd/mm/yyyy。
StringItem
AFAIK 你不能DateField在 java-me 中更改组件中的日期格式。