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);

Here is the main code for adding map and one horizonatalmanager. when i scroll the map field it's overlap with manager.

Nate
  • 31,017
  • 13
  • 83
  • 207
Janny
  • 681
  • 1
  • 8
  • 33

1 Answers1

0

have you try to add that map to manager ?

mainmanager.add(your hrizontal manager) mainmanager.add(your manager that include the map)

add(mainmanager)

abang_adit
  • 21
  • 5