Same here - I just did the following and it worked again
I had the same problem, I switched this following from
If PnlLayouts.IsInitialized Then
Activity.RemoveViewAt(0)
End If
PnlLayouts.Initialize("")
PnlLayouts.LoadLayout(Layout)
Activity.AddView(PnlLayouts, 0, 0, 100%x, 100%y)
to
If PnlLayouts.IsInitialized Then
Activity.RemoveViewAt(0)
End If
PnlLayouts.Initialize("")
Activity.AddView(PnlLayouts, 0, 0, 100%x, 100%y)
PnlLayouts.LoadLayout(Layout)
and it started working