In Main attributes i have set below, yet, activity is not covering full screen (status bar area)
B4X:
#Region Activity Attributes
#FullScreen: true
#IncludeTitle: false
#BridgeLogger: True
' Use "unspecified" to support both Portrait and Landscape
#SupportedOrientations: unspecified
#End Region
Immersive mode means full screen mode where the navigation bar is also hidden. The user can bring back the bars by swiping near the edges. The required steps are: 1. Call setSystemUiVisibility with the immersive flags. This is done in Activity_WindowFocusChanged. 2. Get the full display size...
Immersive mode means full screen mode where the navigation bar is also hidden. The user can bring back the bars by swiping near the edges. The required steps are: 1. Call setSystemUiVisibility with the immersive flags. This is done in Activity_WindowFocusChanged. 2. Get the full display size...
Immersive mode means full screen mode where the navigation bar is also hidden. The user can bring back the bars by swiping near the edges. The required steps are: 1. Call setSystemUiVisibility with the immersive flags. This is done in Activity_WindowFocusChanged. 2. Get the full display size...
@Cableguy Thank you very much for your help. Problem is solved. Basically, i moved GetRealSize Sub from Main module to Activity Module. Earlier I used to call sub GetRealSize from my Activity module.