Fix MapMultiSelectionMenu crash
This commit is contained in:
parent
750cb432b0
commit
b167096be1
1 changed files with 27 additions and 12 deletions
|
@ -44,15 +44,16 @@ public class MapMultiSelectionMenu extends BaseMenuController {
|
||||||
this.pointDescription = pointDescription;
|
this.pointDescription = pointDescription;
|
||||||
this.object = object;
|
this.object = object;
|
||||||
this.mapActivity = mapActivity;
|
this.mapActivity = mapActivity;
|
||||||
if (mapActivity != null) {
|
init();
|
||||||
init();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void init() {
|
protected void init() {
|
||||||
controller = MenuController.getMenuController(mapActivity, latLon, pointDescription, object, MenuType.MULTI_LINE);
|
MapActivity mapActivity = getMapActivity();
|
||||||
controller.setActive(true);
|
if (mapActivity != null) {
|
||||||
initTitle();
|
controller = MenuController.getMenuController(mapActivity, latLon, pointDescription, object, MenuType.MULTI_LINE);
|
||||||
|
controller.setActive(true);
|
||||||
|
initTitle();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void deinit() {
|
protected void deinit() {
|
||||||
|
@ -160,7 +161,10 @@ public class MapMultiSelectionMenu extends BaseMenuController {
|
||||||
private void clearMenu() {
|
private void clearMenu() {
|
||||||
clearSelectedObjects();
|
clearSelectedObjects();
|
||||||
objects.clear();
|
objects.clear();
|
||||||
getMapActivity().refreshMap();
|
MapActivity mapActivity = getMapActivity();
|
||||||
|
if (mapActivity != null) {
|
||||||
|
mapActivity.refreshMap();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void show(LatLon latLon, Map<Object, IContextMenuProvider> selectedObjects) {
|
public void show(LatLon latLon, Map<Object, IContextMenuProvider> selectedObjects) {
|
||||||
|
@ -170,8 +174,11 @@ public class MapMultiSelectionMenu extends BaseMenuController {
|
||||||
this.latLon = latLon;
|
this.latLon = latLon;
|
||||||
createCollection(selectedObjects);
|
createCollection(selectedObjects);
|
||||||
updateNightMode();
|
updateNightMode();
|
||||||
MapMultiSelectionMenuFragment.showInstance(getMapActivity());
|
MapActivity mapActivity = getMapActivity();
|
||||||
getMapActivity().refreshMap();
|
if (mapActivity != null) {
|
||||||
|
MapMultiSelectionMenuFragment.showInstance(mapActivity);
|
||||||
|
mapActivity.refreshMap();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isVisible() {
|
public boolean isVisible() {
|
||||||
|
@ -180,7 +187,12 @@ public class MapMultiSelectionMenu extends BaseMenuController {
|
||||||
}
|
}
|
||||||
|
|
||||||
public Fragment getFragmentByTag() {
|
public Fragment getFragmentByTag() {
|
||||||
return getMapActivity().getSupportFragmentManager().findFragmentByTag(MapMultiSelectionMenuFragment.TAG);
|
MapActivity mapActivity = getMapActivity();
|
||||||
|
if (mapActivity != null) {
|
||||||
|
return mapActivity.getSupportFragmentManager().findFragmentByTag(MapMultiSelectionMenuFragment.TAG);
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void hide() {
|
public void hide() {
|
||||||
|
@ -199,8 +211,11 @@ public class MapMultiSelectionMenu extends BaseMenuController {
|
||||||
public void openContextMenu(@NonNull MenuObject menuObject) {
|
public void openContextMenu(@NonNull MenuObject menuObject) {
|
||||||
IContextMenuProvider provider = selectedObjects.remove(menuObject.getObject());
|
IContextMenuProvider provider = selectedObjects.remove(menuObject.getObject());
|
||||||
hide();
|
hide();
|
||||||
ContextMenuLayer contextMenuLayer = getMapActivity().getMapLayers().getContextMenuLayer();
|
MapActivity mapActivity = getMapActivity();
|
||||||
contextMenuLayer.showContextMenu(menuObject.getLatLon(), menuObject.getPointDescription(), menuObject.getObject(), provider);
|
if (mapActivity != null) {
|
||||||
|
ContextMenuLayer contextMenuLayer = mapActivity.getMapLayers().getContextMenuLayer();
|
||||||
|
contextMenuLayer.showContextMenu(menuObject.getLatLon(), menuObject.getPointDescription(), menuObject.getObject(), provider);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void clearSelectedObjects() {
|
private void clearSelectedObjects() {
|
||||||
|
|
Loading…
Reference in a new issue