IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 移动开发 -> 问题分析:Framework level App的android:screenOrientation 问题解决 -> 正文阅读

[移动开发]问题分析:Framework level App的android:screenOrientation 问题解决

问题描述

系统打开自动转屏,
 app中设置 android:screenOrientation="portrait"为0度(竖屏)
 实测 app仍然随着手机转动而转动

问题分析

通过观察
此手机 的独特性是其屏幕尺寸 长宽相等 是个square方屏。

问题解决

代码中的问题 记录如下

frameworks/base/services/core/java/com/android/server/wm/DisplayContent.java

    /**
    * If this is true, we would not rotate the display for apps. The rotation would be either the
    * sensor rotation or the user rotation, controlled by
    * {@link WindowManagerPolicy.UserRotationMode}.
    */
   // 如果是true,我们不会旋转应用程序的显示。 
   //旋转可以是传感器旋转或用户旋转 ,由 WindowManagerPolicy.UserRotationMode 控制
   
   private boolean mIgnoreRotationForApps;

   void configureDisplayPolicy() {
       final int width = mBaseDisplayWidth;
       final int height = mBaseDisplayHeight;
       final int shortSize;
       final int longSize;
       if (width > height) {
           shortSize = height;
           longSize = width;
       } else {
           shortSize = width;
           longSize = height;
       }

       final int shortSizeDp = shortSize * DENSITY_DEFAULT / mBaseDisplayDensity;
       final int longSizeDp = longSize * DENSITY_DEFAULT / mBaseDisplayDensity;

       mDisplayPolicy.updateConfigurationAndScreenSizeDependentBehaviors();
       mDisplayRotation.configure(width, height, shortSizeDp, longSizeDp);

       mDisplayFrames.onDisplayInfoUpdated(mDisplayInfo,
               calculateDisplayCutoutForRotation(mDisplayInfo.rotation));

       // Not much of use to rotate the display for apps since it's close to square.
       //因为它接近正方形,所以旋转应用程序的显示并没有多大用处。
       mIgnoreRotationForApps = isNonDecorDisplayCloseToSquare(Surface.ROTATION_0, width, height);
   }
       private boolean isNonDecorDisplayCloseToSquare(int rotation, int width, int height) {
   		        final DisplayCutout displayCutout =
   		                calculateDisplayCutoutForRotation(rotation).getDisplayCutout();
   		        final int uiMode = mWmService.mPolicy.getUiMode();
   		        final int w = mDisplayPolicy.getNonDecorDisplayWidth(
   		                width, height, rotation, uiMode, displayCutout);
   		        final int h = mDisplayPolicy.getNonDecorDisplayHeight(
   		                width, height, rotation, uiMode, displayCutout);
   		        final float aspectRatio = Math.max(w, h) / (float) Math.min(w, h);
   		        return aspectRatio <= mCloseToSquareMaxAspectRatio;
   }
   
   @Override
   int getOrientation() {
       final WindowManagerPolicy policy = mWmService.mPolicy;

       if (mIgnoreRotationForApps) {
           return SCREEN_ORIENTATION_USER;
       }

       if (mWmService.mDisplayFrozen) {
           if (mLastWindowForcedOrientation != SCREEN_ORIENTATION_UNSPECIFIED) {
               if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display id=" + mDisplayId
                       + " is frozen, return " + mLastWindowForcedOrientation);
               // If the display is frozen, some activities may be in the middle of restarting, and
               // thus have removed their old window. If the window has the flag to hide the lock
               // screen, then the lock screen can re-appear and inflict its own orientation on us.
               // Keep the orientation stable until this all settles down.
               return mLastWindowForcedOrientation;
           } else if (policy.isKeyguardLocked()) {
               // Use the last orientation the while the display is frozen with the keyguard
               // locked. This could be the keyguard forced orientation or from a SHOW_WHEN_LOCKED
               // window. We don't want to check the show when locked window directly though as
               // things aren't stable while the display is frozen, for example the window could be
               // momentarily unavailable due to activity relaunch.
               if (DEBUG_ORIENTATION) Slog.v(TAG_WM, "Display id=" + mDisplayId
                       + " is frozen while keyguard locked, return " + mLastOrientation);
               return mLastOrientation;
           }
       } else {
           final int orientation = mAboveAppWindowsContainers.getOrientation();
           if (orientation != SCREEN_ORIENTATION_UNSET) {
               return orientation;
           }
       }

       // Top system windows are not requesting an orientation. Start searching from apps.
       return mTaskStackContainers.getOrientation();
   }

总结

如果屏幕是接近方形。 将忽略app的rotation设置

  移动开发 最新文章
Vue3装载axios和element-ui
android adb cmd
【xcode】Xcode常用快捷键与技巧
Android开发中的线程池使用
Java 和 Android 的 Base64
Android 测试文字编码格式
微信小程序支付
安卓权限记录
知乎之自动养号
【Android Jetpack】DataStore
上一篇文章      下一篇文章      查看所有文章
加:2022-05-09 12:51:06  更:2022-05-09 12:51:12 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/24 23:26:41-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码