Hi,
I have question. Is it possible to use obscurity flags in datafield for text positioning (fenix3)? I tried something but I can't define data field content position for 4 data fields (2 up + 2 down). I need something like this:
if (obsc == OBSCURE_LEFT && obsc == OBSCURE_TOP) {
dc.drawText(x, y,Gfx.FONT_XTINY, dataContent, Gfx.TEXT_JUSTIFY_RIGHT);
}
else {
dc.drawText(x, y,Gfx.FONT_XTINY, dataContent, Gfx.TEXT_JUSTIFY_LEFT);
}
Is needed to use OBSCURE_TOP... format or is it possible to use numerical values described in layouts asi "obscurity=7" and so on? I don't know, if I understand it right. Obscurity defines which part of display is hidden?
Thanks, Tomas