Skip to content

Instantly share code, notes, and snippets.

@hjanuschka
Created September 7, 2015 14:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hjanuschka/72de7c09949981188def to your computer and use it in GitHub Desktop.
Save hjanuschka/72de7c09949981188def to your computer and use it in GitHub Desktop.
Add View on top
FameLayout rootLayout = (FrameLayout)findViewById(android.R.id.content);
View.inflate(this, R.layout.overlay_layout, rootLayout);
Then when you want to remove it:
FrameLayout rootLayout = (FrameLayout)findViewById(android.R.id.content); rootLayout.removeViewAt(rootLayout.getChildCount()-1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment