2009-10-25 18:58:50 UTC
Hi Fred!
Can you be a bit more specific?
Obvious i can't buy a new PDA everytime Microsoft comes up with a new version. Hence i gave it a quick try with the Emulator and couldn't find anything being obviously wrong:
- No overlap problem on QVGA and VGA Professional and Standard devices.
- Not sure what you mean with double tap. This is a tree view so what else should it do but select when you tap once and open when you doubletap?
- Ok the Program Icon on a VGA device looks crap, as Microsoft keeps making them bigger and bigger, but alas.
Are you sure that your homebrew ROM has no problems with the dpi settings? I have to detect which image ressources to load based on the X and Y DPI. Here is the crude routine i use:
>
// Everything smaller than QVGA on PPC is mapped to Std
if ((128 > graphics.DpiX) && (128 > graphics.DpiY))
currDisplay = Display.Std;
// Everything bigger than QVGA on SP is mapped to VGA
else if ((131 < graphics.DpiX) && (131 < graphics.DpiY))
currDisplay = Display.VGA;
// Everything else or unknown is mapped to QVGA
else
currDisplay = Display.QVGA;
Bests,<br>
Tobias