Skip to content

Instantly share code, notes, and snippets.

@Den-Rimus
Created December 18, 2014 15:08
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 Den-Rimus/d0c84c3f7bccd5d51519 to your computer and use it in GitHub Desktop.
Save Den-Rimus/d0c84c3f7bccd5d51519 to your computer and use it in GitHub Desktop.
@Override
public void onStart()
{
super.onStart();
Dialog dialog = getDialog();
if (dialog != null)
{
int width = ViewGroup.LayoutParams.MATCH_PARENT;
int height = ViewGroup.LayoutParams.MATCH_PARENT;
dialog.getWindow().setLayout(width, height);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment