Collapse context menu by clicking on details button
This commit is contained in:
parent
6c162a6ca8
commit
3e14afa676
1 changed files with 22 additions and 0 deletions
|
@ -530,6 +530,23 @@ public class MapContextMenuFragment extends BaseOsmAndFragment implements Downlo
|
||||||
return view;
|
return view;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void toggleDetailsHideButton() {
|
||||||
|
int menuState = menu.getCurrentMenuState();
|
||||||
|
final boolean showShowHideButton = menuState == MenuState.HALF_SCREEN || (!menu.isLandscapeLayout() && menuState == MenuState.FULL_SCREEN);
|
||||||
|
TextView detailsButton = (TextView) view.findViewById(R.id.context_menu_details_button);
|
||||||
|
detailsButton.setText(showShowHideButton ? R.string.shared_string_collapse : R.string.description);
|
||||||
|
detailsButton.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View view) {
|
||||||
|
if (showShowHideButton) {
|
||||||
|
openMenuHeaderOnly();
|
||||||
|
} else {
|
||||||
|
openMenuFullScreen();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
private void deactivate(View view) {
|
private void deactivate(View view) {
|
||||||
view.setEnabled(false);
|
view.setEnabled(false);
|
||||||
view.setAlpha(0.5f);
|
view.setAlpha(0.5f);
|
||||||
|
@ -564,6 +581,10 @@ public class MapContextMenuFragment extends BaseOsmAndFragment implements Downlo
|
||||||
changeMenuState(getViewY(), true, true, false);
|
changeMenuState(getViewY(), true, true, false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void openMenuHeaderOnly() {
|
||||||
|
changeMenuState(getViewY(), true, false, true);
|
||||||
|
}
|
||||||
|
|
||||||
public void openMenuHalfScreen() {
|
public void openMenuHalfScreen() {
|
||||||
int oldMenuState = menu.getCurrentMenuState();
|
int oldMenuState = menu.getCurrentMenuState();
|
||||||
if (oldMenuState == MenuState.HEADER_ONLY) {
|
if (oldMenuState == MenuState.HEADER_ONLY) {
|
||||||
|
@ -596,6 +617,7 @@ public class MapContextMenuFragment extends BaseOsmAndFragment implements Downlo
|
||||||
restoreCustomMapRatio();
|
restoreCustomMapRatio();
|
||||||
menu.updateControlsVisibility(true);
|
menu.updateControlsVisibility(true);
|
||||||
doBeforeMenuStateChange(oldMenuState, newMenuState);
|
doBeforeMenuStateChange(oldMenuState, newMenuState);
|
||||||
|
toggleDetailsHideButton();
|
||||||
}
|
}
|
||||||
|
|
||||||
applyPosY(currentY, needCloseMenu, needMapAdjust, oldMenuState, newMenuState, 0);
|
applyPosY(currentY, needCloseMenu, needMapAdjust, oldMenuState, newMenuState, 0);
|
||||||
|
|
Loading…
Reference in a new issue