Using the non B4X pages template, I have noticed that the 'show title' flag for the Activity in the designer seems ineffective. We have an existing, Atlas SOS, it's not been converted to B4X pages yet. I have put :
in main::activity_create and the app still covers the whole screen, so the effect is the system bar at the top is overlayed on the app.
app still covers the whole screen, so the effect is the system bar at the top is overlayed on the app.
B4X:
' // 2026.07.30 - SDK 36 Upgrade
Try
ime.Initialize("ime")
root = xui.CreatePanel("")
Dim Content As Rect = ime.GetContentRect
Activity.AddView(root, Content.Left, Content.Top, Content.Width, Content.Height)
ime.UpdatePercentageReference(root.Width, root.Height)
root.LoadLayout("Layout")
ime.AddHeightChangedEvent
ime.HideKeyboard
Catch
mod_functions.writelog($"main::Activity_Create::SDK36 Upgrade:: -error- ${LastException.Message}"$)
End Try
in main::activity_create and the app still covers the whole screen, so the effect is the system bar at the top is overlayed on the app.
app still covers the whole screen, so the effect is the system bar at the top is overlayed on the app.
Last edited: