Thanks for that advice!!
I have used the following to test for orientation then add/draw one column of Views for portrait and two columns of Views for landscape.
If Activity.Height > Activity.Width Then
Draw4Portrait
Else
Draw4Landscape
End If
It works fine when running for first time (in both orientations), but as soon as I change orientation (while running) and Activity_Resume occurs it says Views need to be initialized. If I initialize the views, then I get a NullException.
I am a bit confused with this initializing of views, because up to now I have only added/altered views in the Designer and everything always worked fine without any initializing.
Can someone assist a newbie with a probably a very basic thing I am missing?