0
images = _appData.getImageAccoToScr("StoreLocaterMapView");
//Add Title Bar to Screen
addTitle();
// initializing the Map component
mMapField =  new CustomMapField(BLANK, null, _appData, getGraphics(), hFM);
// Adding button to toggle to store list view
addToggleButton();
/*// initializing the Map component
mMapField = new CustomMapField(BLANK, null, _appData, getGraphics(), hFM);    */

// Manager to add the components
_contentOne = new VerticalFieldManager(Color.WHITE | NO_HORIZONTAL_SCROLL | NO_VERTICAL_SCROLL | NON_FOCUSABLE);

// adding pins related to stores to map view
addPinsToMap();

//Add WaitingPopUp to screen
addPopup();


// adding manager to screen
_contentOne.add(mMapField);
add(_contentOne);

これは、マップと 1 つのHorizo​​ntalmanager を追加するためのメイン コードです。マップ フィールドをスクロールすると、マネージャーと重なっています。

4

1 に答える 1

0

そのマップをマネージャーに追加しようとしましたか?

mainmanager.add(あなたの水平マネージャー) mainmanager.add(マップを含むあなたのマネージャー)

追加 (メインマネージャー)

于 2013-03-07T04:42:57.543 に答える