in the simulator, I can't seem to be able to get my code to work on the VA.
The VA by default only has the 3 horizontal layout is it?
I looked at the resolution / size and it seems like it's the same as the 920xt (205x148)
so I coded my datafield to follow that particular screen size, it seems to work for the 920xt but not for the VA.
I'm not exactly sure what I should do to be able to simulate it tho.
Anyways, I think I've done what I can for now and will be uploading my new DataField App for both the F3 and 920xt at the very least.
if (width == 205 && height == 148)
{
dc.setColor(Gfx.COLOR_RED, Gfx.COLOR_TRANSPARENT);
dc.drawLine(0, 74, 205, 74);
dc.setColor(Gfx.COLOR_BLACK, Gfx.COLOR_TRANSPARENT);
// These are label for the Top
dc.drawText( 35, 5, Gfx.FONT_XTINY, "TOD",Gfx.TEXT_JUSTIFY_CENTER);
dc.drawText(110, 5, Gfx.FONT_XTINY, "ELAPSED",Gfx.TEXT_JUSTIFY_CENTER);
dc.drawText(175, 5, Gfx.FONT_XTINY, CadLabel,Gfx.TEXT_JUSTIFY_CENTER);