Skip to content

Instantly share code, notes, and snippets.

@Krylez-zz
Last active August 29, 2015 14:04
Show Gist options
  • Save Krylez-zz/aeb481b9b7bd75bfceae to your computer and use it in GitHub Desktop.
Save Krylez-zz/aeb481b9b7bd75bfceae to your computer and use it in GitHub Desktop.
// Don't do it this way
LayoutInflater inflater = (LayoutInflater)
context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
// Do this instead
LayoutInflater inflater = LayoutInflater.from(context);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment