Sub FixLayout
' Always anchor to Activity, not cached values
webviews(0).SetLayoutAnimated(0, 0, 0, 100%x, 100%y)
webviews(1).SetLayoutAnimated(0, 0, 0, 100%x, 100%y)
End Sub
Sub FixLayoutDeferred
Sleep(1) ' yield a frame so Android completes layout/insets
FixLayout
End Sub
Private Sub B4XPage_Created (Root1 As B4XView)
Root = Root1
Root.AddView(webviews(0),0,0,Root.Width,Root.Height)
Root.AddView(webviews(1),0,0,Root.Width,Root.Height)
FixLayout
...
Sub resume
CallSubDelayed(B4XPages.MainPage, "FixLayoutDeferred")
...