Sergey_New Well-Known Member Licensed User Longtime User Jun 16, 2023 #1 How is it possible to change the background color of a B4XDialog to transparent or less dark when Dialog.BlurBackground = False? I am using Themes.LightTheme. Last edited: Jun 16, 2023
How is it possible to change the background color of a B4XDialog to transparent or less dark when Dialog.BlurBackground = False? I am using Themes.LightTheme.
Solution TILogistic Jun 16, 2023 B4X: dialog.BlurBackground = False dialog.OverlayColor = 0x80808080 or dialog.OverlayColor = xui.Color_ARGB(128,128,128,128) Click to expand... or use and adjust color transparency
B4X: dialog.BlurBackground = False dialog.OverlayColor = 0x80808080 or dialog.OverlayColor = xui.Color_ARGB(128,128,128,128) Click to expand... or use and adjust color transparency
TILogistic Expert Licensed User Longtime User Jun 16, 2023 #2 B4X: dialog.BlurBackground = False dialog.OverlayColor = 0x80808080 or dialog.OverlayColor = xui.Color_ARGB(128,128,128,128) Click to expand... or use and adjust color transparency Upvote 0 Solution
B4X: dialog.BlurBackground = False dialog.OverlayColor = 0x80808080 or dialog.OverlayColor = xui.Color_ARGB(128,128,128,128) Click to expand... or use and adjust color transparency
Sergey_New Well-Known Member Licensed User Longtime User Jun 16, 2023 #3 Thank you very much! Upvote 0