Eliveras
Geocacher
Mir gefällt nicht, daß im GotoPanel die Koordinaten "GPS:" linksbündig und "Ziel:" zentriert sind, weil das zweite ein Button ist.
Jetzt wollte ich mich gerade an die Änderung machen, ich fand folgendes Codesegement verantwortlich:
"Ewe Application Development" ist irgendwie nicht so recht vollständig...
Jetzt wollte ich mich gerade an die Änderung machen, ich fand folgendes Codesegement verantwortlich:
Code:
//Coords
CoordsP.addNext(lblGPS = new mLabel("GPS: "),CellConstants.DONTSTRETCH, (CellConstants.DONTFILL|CellConstants.WEST));
lblGPS.backGround = RED;
lblGPS.setMenu(mnuContextFormt);
lblGPS.modifyAll(ControlConstants.WantHoldDown, 0);
CoordsP.addLast(lblPosition = new mLabel(myNavigation.gpsPos.toString(currFormat)),CellConstants.HSTRETCH, (CellConstants.HFILL|CellConstants.WEST));
lblPosition.setMenu(mnuContextFormt);
lblPosition.modifyAll(ControlConstants.WantHoldDown, 0);
CoordsP.addNext(lblDST = new mLabel(MyLocale.getMsg(1500,"DST:")),CellConstants.DONTSTRETCH, (CellConstants.DONTFILL|CellConstants.WEST));
lblDST.backGround = new Color(0,0,255);
lblDST.setMenu(mnuContextFormt);
lblDST.modifyAll(ControlConstants.WantHoldDown, 0);
CoordsP.addLast(btnGoto = new mButton(getGotoBtnText()),CellConstants.HSTRETCH, (CellConstants.HFILL|CellConstants.WEST));
- Frage 1: Wie macht man das?
- Frage 2 (die interessantere): Wo steht, wie man das macht?
"Ewe Application Development" ist irgendwie nicht so recht vollständig...