Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

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

public class Main {
    /**
     * Checks if current device is tablet.
     * 
     * @param content
     * @return boolean
     */
    @SuppressLint("InlinedApi")
    public static boolean isTablet(Context content) {
        boolean large = ((content.getResources().getConfiguration().screenLayout
                & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_LARGE);
        boolean xlarge = ((content.getResources().getConfiguration().screenLayout
                & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_XLARGE);
        return (large || xlarge);
    }
}