Android中 判断是平板还是手机
//是平板返回true 不是平板返回falsepublic boolean isTablet(Context context) {return (context.getResources().getConfiguration().screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) >= Configuration.SCREENLAYOUT_SIZE_LARGE;}
补充:移动开发 , Android ,