package com.wpc.library.widget;
|
|
import android.content.Context;
|
import android.content.res.Configuration;
|
|
/**
|
* Created by weikou2015 on 2016/12/15.
|
*/
|
|
public class IsPad {
|
public static boolean isPad(Context context) {
|
return (context.getResources().getConfiguration().screenLayout
|
& Configuration.SCREENLAYOUT_SIZE_MASK)
|
>= Configuration.SCREENLAYOUT_SIZE_LARGE;
|
}
|
}
|