Skip to content

Instantly share code, notes, and snippets.

@raxhaxor
Created December 24, 2019 16:31
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 raxhaxor/3040c4757744c0a5bc9c9d5eb0f1c013 to your computer and use it in GitHub Desktop.
Save raxhaxor/3040c4757744c0a5bc9c9d5eb0f1c013 to your computer and use it in GitHub Desktop.
private void installDecor() {
if (mDecor == null) {
mDecor = generateDecor();
mDecor.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS);
mDecor.setIsRootNamespace(true);
}
if (mContentParent == null) {
mContentParent = generateLayout(mDecor);
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment