[android] Remove outdoor_seating support

Signed-off-by: Arthur-GYT <a.gayot@posteo.com>
This commit is contained in:
Arthur-GYT 2024-08-30 15:33:04 +02:00 committed by Viktor Havaka
parent c56e4a5242
commit f14d869644

View file

@ -198,7 +198,8 @@ public class EditorFragment extends BaseMwmFragment implements View.OnClickListe
mSelfService.setText(Utils.getTagValueLocalized(view.getContext(), "self_service", selfServiceMetadata));
initMetadataEntry(Metadata.MetadataType.FMD_OPERATOR, 0);
mWifi.setChecked(Editor.nativeHasWifi());
mOutdoorSeating.setChecked(Editor.nativeGetSwitchInput(Metadata.MetadataType.FMD_OUTDOOR_SEATING.toInt(),"yes"));
// TODO Reimplement this to avoid https://github.com/organicmaps/organicmaps/issues/9049
//mOutdoorSeating.setChecked(Editor.nativeGetSwitchInput(Metadata.MetadataType.FMD_OUTDOOR_SEATING.toInt(),"yes"));
refreshOpeningTime();
refreshEditableFields();
refreshResetButton();
@ -221,7 +222,8 @@ public class EditorFragment extends BaseMwmFragment implements View.OnClickListe
Editor.nativeSetHasWifi(mWifi.isChecked());
Editor.nativeSetNames(mParent.getNamesAsArray());
Editor.nativeSetSwitchInput(Metadata.MetadataType.FMD_OUTDOOR_SEATING.toInt(), mOutdoorSeating.isChecked(), "yes", "no");
// TODO Reimplement this to avoid https://github.com/organicmaps/organicmaps/issues/9049
//Editor.nativeSetSwitchInput(Metadata.MetadataType.FMD_OUTDOOR_SEATING.toInt(), mOutdoorSeating.isChecked(), "yes", "no");
for (var e : mMetadata.entrySet())
Editor.nativeSetMetadata(e.getKey().toInt(), e.getValue().mEdit.getText().toString());
@ -485,7 +487,9 @@ public class EditorFragment extends BaseMwmFragment implements View.OnClickListe
mDetailsBlocks.put(Metadata.MetadataType.FMD_CUISINE, blockCuisine);
mDetailsBlocks.put(Metadata.MetadataType.FMD_INTERNET, blockWifi);
mDetailsBlocks.put(Metadata.MetadataType.FMD_SELF_SERVICE, blockSelfService);
mDetailsBlocks.put(Metadata.MetadataType.FMD_OUTDOOR_SEATING, blockOutdoorSeating);
// TODO Reimplement this to avoid https://github.com/organicmaps/organicmaps/issues/9049
UiUtils.hide(blockOutdoorSeating);
//mDetailsBlocks.put(Metadata.MetadataType.FMD_OUTDOOR_SEATING, blockOutdoorSeating);
mDetailsBlocks.put(Metadata.MetadataType.FMD_WEBSITE, websiteBlock);
mDetailsBlocks.put(Metadata.MetadataType.FMD_WEBSITE_MENU, websiteMenuBlock);
mDetailsBlocks.put(Metadata.MetadataType.FMD_EMAIL, emailBlock);