isTablet判断是否为平板

首先在xml文件中添加   false

 

然后定义一个公共的静态方法

 public static boolean isTablet(Context context) {
        return context.getResources().getBoolean(R.bool.isTablet);
    }

 

最后使用判断

boolean xlarge = isTablet(this);

你可能感兴趣的:(android)