Skip to content

Instantly share code, notes, and snippets.

@undownding
Created June 15, 2016 04:04
Show Gist options
  • Save undownding/088633de49ac1dc21855180cbce99682 to your computer and use it in GitHub Desktop.
Save undownding/088633de49ac1dc21855180cbce99682 to your computer and use it in GitHub Desktop.
public static boolean isTablet(Context context) {
return (context.getResources().getConfiguration().screenLayout
& Configuration.SCREENLAYOUT_SIZE_MASK)
>= Configuration.SCREENLAYOUT_SIZE_LARGE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment