Android 11.0 禁止系统界面下拉状态栏和通知栏 手机 平板 车载 TV 投影 通用

1、禁止systemUI下拉状态栏和通知栏的核心代码部分

framework/base/packages/apps/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
framework/base/packages/apps/SystemUI/src/com/android/systemui/statusbar/phone/CollapsedStatusBarFragment.java
framework/base/packages/apps/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java
/framework/base/packages/apps/SystemUI/src/com/android/systemui/statusbar/notification/NotificationStackScrollLayout.java

2、禁止systemUI下拉状态栏和通知栏,考虑需要在锁屏状态下,和未锁屏状态下

2.1 没有锁屏状态下通过
KeyguardViewMediator.java来在adjustStatusBarLocked()中通过设置StatusBarManager的flag
属性来设置禁用下拉状态栏,然后在开机以后就禁用下拉状态栏达到禁用的目的

framework/base/packages/apps/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
private void handleShow(Bundle options) {Trace.beginSection("KeyguardViewMediator#handleShow");final int currentUser = KeyguardUpdateMonitor.getCurrentUser();if (mLockPatternUtils.isSecure(currentUser)) {mLockPatternUtils.getDevicePolicyManager().reportKeyguardSecured(currentUser);}synchronized (KeyguardViewMediator.this) {if (!mSystemReady) {if (DEBUG) Log.d(TAG, "ignoring handleShow because system is not ready.");return;} else {if (DEBUG) Log.d(TAG, "handleShow");}mHiding = false;mWakeAndUnlocking = false;setShowingLocked(true);mKeyguardViewControllerLazy.get().show(options);resetKeyguardDonePendingLocked();mHideAnimationRun = false;adjustStatusBarLocked();userActivity();mUpdateMonitor.setKeyguardGoingAway(false);mKeyguardViewControllerLazy.get().setKeyguardGoingAwayState(false);mShowKeyguardWakeLock.release();}private void adjustStatusBarLocked(boolean forceHideHomeRecentsButtons,
boolean forceClearFlags) {
if (mStatusBarManager == null) {
mStatusBarManager = (StatusBarManager)
mContext.getSystemService(Context.STATUS_BAR_SERVICE);
}if (mStatusBarManager == null) {
Log.w(TAG, "Could not get status bar manager");
} else {
// Disable aspects of the system/status/navigation bars that must not be re-enabled by
// windows that appear on top, ever
int flags = StatusBarManager.DISABLE_NONE;// TODO (b/155663717) After restart, status bar will not properly hide home button
//  unless disable is called to show un-hide it once first
if (forceClearFlags) {
mStatusBarManager.disable(flags);
}if (forceHideHomeRecentsButtons || isShowingAndNotOccluded()) {
if (!mShowHomeOverLockscreen || !mInGestureNavigationMode) {
flags |= StatusBarManager.DISABLE_HOME;
}
flags |= StatusBarManager.DISABLE_RECENT;
}if (DEBUG) {
Log.d(TAG, "adjustStatusBarLocked: mShowing=" + mShowing + " mOccluded=" + mOccluded
+ " isSecure=" + isSecure() + " force=" + forceHideHomeRecentsButtons
+  " --> flags=0x" + Integer.toHexString(flags));
}mStatusBarManager.disable(flags);
}
}

在调用show 显示状态栏的时候,adjustStatusBarLocked() 可以设置 mStatusBarManager 的flag为StatusBarManager.DISABLE_EXPAND表示禁用下拉状态栏

@@ -2168,7 +2168,7 @@ public class KeyguardViewMediator extends SystemUI {+ " isSecure=" + isSecure() + " force=" + forceHideHomeRecentsButtons+  " --> flags=0x" + Integer.toHexString(flags));}
-
+            flags = StatusBarManager.DISABLE_EXPAND;mStatusBarManager.disable(flags);}}

2.2 StatusBar 中不显示通知信息的图片:

在锁屏通知栏中去掉显示通知的部分,达到禁用下拉状态栏的功能
主要实现如下:
framework/base/packages/apps/SystemUI/src/com/android/systemui/statusbar/phone/CollapsedStatusBarFragment.java

@@ -159,7 +159,8 @@ public class CollapsedStatusBarFragment extends Fragment implements CommandQueueif ((state1 & DISABLE_NOTIFICATION_ICONS) != 0) {hideNotificationIconArea(animate);} else {
-                showNotificationIconArea(animate);
+                //showNotificationIconArea(animate);
+                hideNotificationIconArea(animate);}}

2.3 锁屏是 禁止状态栏下拉
在锁屏状态下禁用下拉状态栏 通知界面NotificationPanelView.java 去掉下拉开展状态栏部分的功能

路径

framework/base/packages/apps/SystemUI/src/com/android/systemui/statusbar/phone/NotificationPanelView.java
@@ -908,7 +908,7 @@ public class NotificationPanelView extends PanelView implementsif (!isFullyCollapsed()) {handleQsDown(event);}
-        if (!mQsExpandImmediate && mQsTracking) {
+        if (!mKeyguardShowing && !mQsExpandImmediate && mQsTracking) {onQsTouch(event);if (!mConflictingQsExpansionGesture) {return true;
@@ -1114,6 +1114,9 @@ public class NotificationPanelView extends PanelView implements}private void setQsExpanded(boolean expanded) {
+        if (mKeyguardShowing) {
+            return;
+        }boolean changed = mQsExpanded != expanded;if (changed) {mQsExpanded = expanded;
@@ -1508,7 +1511,7 @@ public class NotificationPanelView extends PanelView implementsif (!mQsExpansionEnabled || mCollapsedOnDown) {return false;}
-        View header = mKeyguardShowing ? mKeyguardStatusBar : mQs.getHeader();
+        View header = /*mKeyguardShowing ? mKeyguardStatusBar :*/ mQs.getHeader();final boolean onHeader = x >= mQsFrame.getX()&& x <= mQsFrame.getX() + mQsFrame.getWidth()&& y >= header.getTop() && y <= header.getBottom();

2.4 锁屏状态隐藏通知栏的显示
禁止显示通知栏

/framework/base/packages/apps/SystemUI/src/com/android/systemui/statusbar/notification/NotificationStackScrollLayout.java
@@ -717,7 +717,8 @@ public class NotificationStackScrollLayout extends ViewGroup}private void setMaxLayoutHeight(int maxLayoutHeight) {
-        mMaxLayoutHeight = maxLayoutHeight;
+        //mMaxLayoutHeight = maxLayoutHeight;
+        mMaxLayoutHeight = 0;mShelf.setMaxLayoutHeight(maxLayoutHeight);updateAlgorithmHeightAndPadding();}
@@ -2590,9 +2591,10 @@ public class NotificationStackScrollLayout extends ViewGroup} else {mTopPaddingOverflow = 0;}
-        setTopPadding(ignoreIntrinsicPadding ? topPadding : clampPadding(topPadding),
-                animate);
-        setExpandedHeight(mExpandedHeight);
+        //setTopPadding(ignoreIntrinsicPadding ? topPadding : clampPadding(topPadding),
+        //        animate);
+        //setExpandedHeight(mExpandedHeight);
+        setTopPadding(-500,animate);}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/718920.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

数字化转型导师坚鹏:金融机构数字化运营

金融机构数字化运营 课程背景&#xff1a; 很多金融机构存在以下问题&#xff1a; 不清楚数字化运营对金融机构发展有什么影响&#xff1f; 不知道如何提升金融机构数字化运营能力&#xff1f; 不知道金融机构如何开展数字化运营工作&#xff1f; 课程特色&#xff1a;…

盘点全网哪些超乎想象的高科技工具?有哪些免费开源的最新AI智能工具?短视频自媒体运营套装?

盘点全网哪些超乎想象的高科技工具&#xff1f;有哪些免费开源的最新AI智能工具&#xff1f;短视频自媒体运营套装&#xff1f; 自媒体主要用来干什么&#xff1f; 可以通过短视频吸引更多的观众和粉丝&#xff0c;提升自媒体账号的影响力和知名度。 短视频形式更加生动、直观…

使用C++界面框架ImGUI开发一个简单程序

简介 ImGui 是一个用于C的用户界面库&#xff0c;跨平台、无依赖&#xff0c;支持OpenGL、DirectX等多种渲染API&#xff0c;是一种即时UI&#xff08;Immediate Mode User Interface&#xff09;库&#xff0c;保留模式与即时模式的区别参考保留模式与即时模式。ImGui渲染非常…

关于企业数字化转型:再认识、再思考、再出发

近年来&#xff0c;随着国家数字化政策不断出台、新兴技术不断进步、企业内生需求持续释放&#xff0c;数字化转型逐步成为企业实现高质量发展的必由之路&#xff0c;成为企业实现可持续发展乃至弯道超车的重要途径。本文重点分析当下阻碍企业数字化转型的难点&#xff0c;提出…

SPC 之 I-MR 控制图

概述 1924 年&#xff0c;美国的休哈特博士应用统计数学理论将 3Sigma 原理运用于生产过程中&#xff0c;并发表了 著名的“控制图法”&#xff0c;对产品特性和过程变量进行控制&#xff0c;开启了统计过程控制新时代。 什么是控制图 控制图指示过程何时不受控制&#xff…

通过 Jenkins 经典 UI 创建一个基本流水线

通过 Jenkins 经典 UI 创建一个基本流水线 点击左上的 新建任务。 在 输入一个任务名称字段&#xff0c;填写你新建的流水线项目的名称。 点击 流水线&#xff0c;然后点击页面底部的 确定 打开流水线配置页 点击菜单的流水线 选项卡让页面向下滚动到 流水线 部分 在 流水线 …

TransactionTemplate的使用【事务】

1.1 事务 spring给我们提供了编程式事务以及声明式两种事务。比如我们日常写的基于XML配置的事务管理以及基于注解的方式都是一个声明式事务&#xff0c;但是有很多同学在使用注解方式的时候会出现很多时候事务不生效的问题&#xff0c;可能是同学没有完全理解到其中的原理。这…

微信小程序开发学习笔记《19》uni-app框架-配置小程序分包与轮播图跳转

微信小程序开发学习笔记《19》uni-app框架-配置小程序分包与轮播图跳转 博主正在学习微信小程序开发&#xff0c;希望记录自己学习过程同时与广大网友共同学习讨论。建议仔细阅读uni-app对应官方文档 一、配置小程序分包 分包可以减少小程序首次启动时的加载时间 为此&#…

YOLOV5学习

【目标检测】yolov5模型详解-CSDN博客

如何使用生成式人工智能探索视频博客的魅力?

视频博客&#xff0c;尤其是关于旅游的视频博客&#xff0c;为观众提供了一种全新的探索世界的方式。通过图像和声音的结合&#xff0c;观众可以身临其境地体验到旅行的乐趣和发现的喜悦。而对于内容创作者来说&#xff0c;旅游视频博客不仅能分享他们的旅行故事&#xff0c;还…

模拟算法题练习(一)(扫雷,灌溉,回文日期)

目录 模拟算法介绍&#xff1a; &#xff08;一、扫雷&#xff09; &#xff08;二、灌溉&#xff09; &#xff08;三、回文日期&#xff09; 有一说一这题大佬的题解是真的强 模拟算法介绍&#xff1a; 模拟算法通过模拟实际情况来解决问题&#xff0c;一般容易理解但是实…

算法基本思想(结尾附上记忆口诀)

算法基本思想(结尾附上记忆口诀) 贪心分治枚举动态回溯递归&#xff08;兄弟思想-递推&#xff09; 这篇文章说的这些思想网上一大堆,可以不看。直接关注结尾自创口诀&#xff0c;希望给你提供一点帮助。 递归 概述 在计算机科学中是指一种通过重复将问题分解为同类的子问…

信息检索技术如何改变了人们获取知识的方式?

第一个肯定是改变了获取信息的渠道&#xff0c;以前需要到图书馆&#xff0c;书籍&#xff0c;报纸&#xff0c;杂志等方式获取信息&#xff0c;现在只需要通过上网搜索一下&#xff0c;就能获取到信息&#xff0c;并且比自己查的更广泛全面。当然&#xff0c;互联网业带来了海…

贪心刷题1-部分背包

题目来源&#xff1a;【深基12.例1】部分背包问题 - 洛谷 参考书目&#xff1a;《深入浅出程序设计竞赛&#xff08;基础篇&#xff09;》 解题思路&#xff1a;这道题是部分背包&#xff0c;如果金币不能完整的放入是可以分割的。题目中有若干堆金币&#xff0c;每堆金币有一…

mac电脑使用pyinstaller打包python脚本

pyinstaller -F template.py 出现报错"AssertionError: Executable contains code signature!" 移除签名 codesign --remove-signature /Users/f7692281/PycharmProjects/TPtestlist/transmit_v6.0.py 打包命令 pyinstaller --windowed transmit_v6.0.py pyinst…

【js】事件循环之promise的async/await与setTimeout

什么是事件循环 事件循环又叫消息循环&#xff0c;是浏览器渲染主线程的工作方式。 浏览器开启一个永不停止的for循环&#xff0c;每次循环都会从消息队列中取任务&#xff0c;其他线程只需要在合适的时候将任务加入到消息队列的末尾。 过去分为宏任务和微任务&#xff0c;现…

wordpress模板官网

移民wordpress主题 移民代办wordpress主题&#xff0c;适合做海外移民咨询的代理公司搭建wordpress企业官方网站使用。 https://www.jianzhanpress.com/?p5130 夏令营wordpress主题 绿色夏令营wordpress主题&#xff0c;适合做夏令营或户外拓展的公司搭建wordpress官方网站…

D2587A高压大电流DC-DC——专为反激式、升压和正向转换器应用而设计的单片集成电路

1、概述 D2587A稳压器是专为反激式、升压和正向转换器应用而设计的单片集成电路。该器件提供四种不同的输出电压版本&#xff1a;3.3V、5V、12V 和可调节电压。这些稳压器需要的外部元器件很少&#xff0c;因此具有成本效益&#xff0c;并且易于使用。该电源开关是一款5A NPN器…

面试经典150题——最小栈

​Life is a journey, theres no right or wrong. 1. 题目描述 2. 题目分析与解析 2.1 思路一 看到题目的一瞬间&#xff0c;有没有注意到 常数时间内检索到最小元素的栈&#xff0c;那说明我们肯定需要把最小元素的下标存储起来&#xff0c;这样才能在常数时间内找到。 其…

网工学习 DHCP配置-接口模式

网工学习 DHCP配置-接口模式 学习DHCP总是看到&#xff0c;接口模式、全局模式、中继模式。理解起来也不困难&#xff0c;但是自己动手操作起来全是问号。跟着老师视频配置啥问题没有&#xff0c;自己组建网络环境配置就是不通&#xff0c;悲催。今天总结一下我学习接口模式的…