Chrome 65不允许在隐身模式下截图
似乎在适用于Android的Chrome(版本65)中引入了“功能”,该功能不允许您在隐身模式下进行屏幕截图。 现在,当尝试截屏时,Android将显示一条警告,提示“应用程序或您的组织不允许截屏。” /** * Sets the attributes flags to secure if there is an incognito tab visible. */ @VisibleForTesting void updateIncognitoState() { WindowManager.LayoutParams attributes = mWindow.getAttributes(); boolean currentSecureState = (attributes.flags & WindowManager.LayoutParams.FLAG_SECURE) == WindowManager.LayoutParams.FLAG_SECURE; boolean expectedSecureState = isShowingIncognito(); if (currentSecureState == expectedSecureState) return; if (expectedSecureState) { mWindow.addFlags(WindowManager.LayoutParams.FLAG_SECURE); } else { …