List of utility methods to do Touch Screen Check
boolean | isTouchScreen(Context context) is Touch Screen int touchscreen = context.getResources().getConfiguration().touchscreen; switch (touchscreen) { case Configuration.TOUCHSCREEN_NOTOUCH: return false; default: return true; |