I have some '??' in the screen in place of the 'mn' that I'm awaited :
time = "" + minutes.format("%02d") + "mn" + s.format("%02d");
In the simulator, this is good, but not in the Watch
thanks for your help.
time = "" + minutes.format("%02d") + "mn" + s.format("%02d");
In fact, I use the Graphics.FONT_NUMBER_MEDIUM , then I'll try to correct it. Thanks,
Like I said, NUMBER_* fonts are pretty much only numbers. Two way to handle this is to use a regular font (FONT_MEDIUM for example), or instead of "mn" use ":" (":" is in all the NUMBER_* fonts).
"Appendix B: Font Specifications" of the UX Guide in the SDK gives you details on what's in the fonts for various devices.