Android Device Type Check isTablet(Context context)

Here you can find the source of isTablet(Context context)

Description

is Tablet

Declaration

public static boolean isTablet(Context context) 

Method Source Code

//package com.java2s;

import android.content.Context;
import android.content.res.Configuration;

public class Main {
    public static boolean isTablet(Context context) {
        Configuration configuration = context.getResources()
                .getConfiguration();/*from   www .j ava  2  s. c  o  m*/
        return (configuration.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) >= Configuration.SCREENLAYOUT_SIZE_LARGE;
    }
}

Related

  1. getPhoneModel()
  2. isGoogleTV(final Context context)
  3. isTablet(Context ctx)
  4. isTablet(final Context context)
  5. getDeviceName()
  6. getPhoneModel()