2017年3月11日

Android 判斷手機或是平板

Android 判斷手機或是平板

public static boolean isPad(Context context) {
    return (context.getResources().getConfiguration().screenLayout
        & Configuration.SCREENLAYOUT_SIZE_MASK) >= Configuration.SCREENLAYOUT_SIZE_LARGE;
}

回傳true就是平板
回傳false就是手機