Android: WebView ActionBar (Honeycomb)?

I have MyActivity with a WebView element. When I "click" on a webview for a long time, an ActionBar pops up. If I try to access the action bar, for example

getActionBar()

somewhere inside my activity i get null. The web view seems to be using some sort of popup menu.

QUESTIONS:

  • How can I access this action bar?
  • How do I customize the action bar so that it doesn't move the activity down when it is displayed (so the ActionBar is on top of it> position: absolute)?

enter image description here

+5
source share
1 answer

ActionMode. , android:windowActionModeOverlay="true" , , android:windowActionBarOverlay ActionBar.

ActionMode, : onActionModeStarted().

+6

All Articles