You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See that they have white background instead of transparent one( copy, paste, zoom buttons)
Video of issue
webview_broken_theme.mov
Cause:
This is caused by refactoring of the DualScreenActivity in 7.0.0.
Specifically you programatically set a theme that is broken by design making it almost impossible to fix on the user side.
protected int getThemeResId() {
return R.style.DualScreenActivityTheme;
}
This background color is used by the webview making it draw it's elements with a white background instead of a
Correct steps for fixing.
-android:background needs to be transparent
-Try to abstain from programatically setting themes. If you want to use a theme put it in the manifest so that a user can easily override it.
Cloned from AzureAD/microsoft-authentication-library-for-android#2381 Putting it here as well because it's directly linked to the common module
=========================
Description of the bug:
Video of issue
webview_broken_theme.mov
Cause:
This is caused by refactoring of the DualScreenActivity in 7.0.0.
Specifically you programatically set a theme that is broken by design making it almost impossible to fix on the user side.
This background color is used by the webview making it draw it's elements with a white background instead of a
Correct steps for fixing.
-android:background needs to be transparent
-Try to abstain from programatically setting themes. If you want to use a theme put it in the manifest so that a user can easily override it.