Skip to content

Instantly share code, notes, and snippets.

@hoseinquest
Created May 18, 2015 07:56
Show Gist options
  • Save hoseinquest/c17891542673a901d86a to your computer and use it in GitHub Desktop.
Save hoseinquest/c17891542673a901d86a to your computer and use it in GitHub Desktop.
Android Detect Tablet Screen
public static boolean isTablet(Context context) {
return (context.getResources().getConfiguration().screenL ayout
& 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