android--如何判断是平板还是手机?

	   /**
	    * 判断是否是平板
	    * @param context
	    * @return
	    */
	    public static boolean isTablet(Context context) 
	    {
	        return (context.getResources().getConfiguration().screenLayout
	                & Configuration.SCREENLAYOUT_SIZE_MASK)
	                >= Configuration.SCREENLAYOUT_SIZE_LARGE;
	    }

你可能感兴趣的:(android,phone,判断,tablet)