android判断横竖屏

    public static boolean isLandscape(Context context) {
        int orientation = context.getResources().getConfiguration().orientation; //获取屏幕方向
        // Checks the orientation of the screen
        if (orientation == Configuration.ORIENTATION_LANDSCAPE) {
            //横屏
            return true;
        } else if (orientation == Configuration.ORIENTATION_PORTRAIT) {
            //竖屏
            return false;
        }
        return false;
    }

你可能感兴趣的:(android判断横竖屏)