Android中如何判断是手机还是平板

  /**
    * 判断是否是平板
    * @param context
    * @return
    */
    public static boolean isTablet(Context context) {
        return (context.getResources().getConfiguration().screenLayout
                & Configuration.SCREENLAYOUT_SIZE_MASK)
                >= Configuration.SCREENLAYOUT_SIZE_LARGE;
    }
posted @ 2014-03-14 15:58  木尘-MCDNF  阅读(225)  评论(0编辑  收藏  举报