Skip to content

Instantly share code, notes, and snippets.

@Subtle-fox
Created April 6, 2018 12:25
Show Gist options
  • Save Subtle-fox/674f250632af6ae18b3a7d548b45c045 to your computer and use it in GitHub Desktop.
Save Subtle-fox/674f250632af6ae18b3a7d548b45c045 to your computer and use it in GitHub Desktop.
Get root view in activity
public static View getParentView(Activity activity) {
return ((ViewGroup) activity.findViewById(android.R.id.content)).getChildAt(0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment