ICode9

精准搜索请尝试: 精确搜索
首页 > 编程语言> 文章详细

Android 修改横屏角度为顺时针270度,37岁程序员被裁

2022-01-31 12:32:18  阅读:363  来源: 互联网

标签:被裁 bar 37 Surface 270 internal android com ROTATION


if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {

mPortraitRotation = Surface.ROTATION_90;

mUpsideDownRotation = Surface.ROTATION_270;

} else {

mPortraitRotation = Surface.ROTATION_270;

mUpsideDownRotation = Surface.ROTATION_90;

}

} else {

shortSize = width;

longSize = height;

mPortraitRotation = Surface.ROTATION_0;

mUpsideDownRotation = Surface.ROTATION_180;

if (res.getBoolean(com.android.internal.R.bool.config_reverseDefaultRotation)) {

mLandscapeRotation = Surface.ROTATION_270;

mSeascapeRotation = Surface.ROTATION_90;

} else {

mLandscapeRotation = Surface.ROTATION_90;

mSeascapeRotation = Surface.ROTATION_270;

}

}

mStatusBarHeight =

res.getDimensionPixelSize(com.android.internal.R.dimen.status_bar_height);

// Height of the navigation bar when presented horizontally at bottom

mNavigationBarHeightForRotation[mPortraitRotation] =

mNavigationBarHeightForRotation[mUpsideDownRotation] =

res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_height);

mNavigationBarHeightForRotation[mLandscapeRotation] =

mNavigationBarHeightForRotation[mSeascapeRotation] = res.getDimensionPixelSize(

com.android.internal.R.dimen.navigation_bar_height_landscape);

// Width of the navigation bar when presented vertically along one side

mNavigationBarWidthForRotation[mPortraitRotation] =

mNavigationBarWidthForRotation[mUpsideDownRotation] =

mNavigationBarWidthForRotation[mLandscapeRotation] =

mNavigationBarWidthForRotation[mSeascapeRotation] =

res.getDimensionPixelSize(com.android.internal.R.dimen.navigation_bar_width);

// SystemUI (status bar) layout policy

int shortSizeDp = shortSize * DisplayMetrics.DENSITY_DEFAULT / density;

int longSizeDp = longSize * DisplayMetrics.DENSITY_DEFAULT / density;

// Allow the navigation bar to move on small devices (phones).

/// M: read the critical dp from mtk resource @{

//mNavigationBarCanMove = shortSizeDp < 600;

mNavigationBarCanMove = shortSizeDp < mContext.getResources().getInteger(

com.mediatek.internal.R.integer.config_dp_for_rotation);

/// @}

mHasNavigationBar = res.getBoolean(com.android.internal.R.bool.config_showNavigationBar);

/// M:[SmartBook]Don’t show navigation bar if SmartBook plugged in @{

if (FeatureOption.MTK_SMARTBOOK_SUPPORT) {

mNavigationBarCanMove = false;

mHasNavigationBar = mSmartBookPlugIn ? false : mContext.getResources().getBoolean(

com.android.internal.R.bool.con
fig_showNavigationBar);

Slog.d(TAG, “mSmartBookPlugIn:” + mSmartBookPlugIn + “, mHasNavigationBar:” + mHasNavigationBar);

}

/// @}

// Allow a system property to override this. Used by the emulator.

// See also hasNavigationBar().

String navBarOverride = SystemProperties.get(“qemu.hw.mainkeys”);

if (“1”.equals(navBarOverride)) {

mHasNavigationBar = false;

} else if (“0”.equals(navBarOverride)) {

mHasNavigationBar = true;

}

// For demo purposes, allow the rotation of the HDMI display to be controlled.

// By default, HDMI locks rotation to landscape.

if (“portrait”.equals(SystemProperties.get(“persist.demo.hdmirotation”))) {

mDemoHdmiRotation = mPortraitRotation;

} else {

mDemoHdmiRotation = mLandscapeRotation;

}

mDemoHdmiRotationLock = SystemProperties.getBoolean(“persist.demo.hdmirotationlock”, false);

// Only force the default orientation if the screen is xlarge, at least 960dp x 720dp, per

// http://developer.android.com/guide/practices/screens_support.html#range

force the default orientation if the screen is xlarge, at least 960dp x 720dp, per

// http://developer.android.com/guide/practices/screens_support.html#range

标签:被裁,bar,37,Surface,270,internal,android,com,ROTATION
来源: https://blog.csdn.net/wa2231a/article/details/122759102

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有