Home > Software engineering >  How to hide zoom controller from Android Studio Bumblebee?
How to hide zoom controller from Android Studio Bumblebee?

Time:01-27

On running Android emulator in latest Android Studio Bumbleebee, I'm seeing these controls on top of it. How can I hide or remove them?

enter image description here

CodePudding user response:

You should use WebSettings and set setDisplayZoomControls to false. This will allow the user to still use the pinch to zoom but the controls will not be displayed.

'''myWebView.getSettings().setDisplayZoomControls(false);'''

CodePudding user response:

Click the gear icon "show options menu" in top right of emulator pane, then toggle "show zoom controls"

CodePudding user response:

In emulator section's setting icon you can see the options of "Show Zoom Controls". Using that you can enable/disable the zoom controls. enter image description here

  •  Tags:  
  • Related