Android examples for android.app:Screen
is Tablet by screen size
import android.content.Context; import android.content.res.Configuration; public class Main { public static boolean isTablet(Context context) { return (context.getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) >= Configuration.SCREENLAYOUT_SIZE_LARGE; }// w ww . j a va 2 s . c om }