My Main Layout has a TabHost. I load a scrollview into each Tab Page, then load a Layout into the scrollview.
The problem is, a scrollview in one of the layouts will not scroll, the Tab Page scrollview consumes the event.
If I do this:
Activity.LoadLayout("Main")
tabPages.AddTab("Points", "Points")
the scrollview in the Points layout scrolls normally.
But if I do this:
Activity.LoadLayout("Main")
scvPointsLAO.Initialize(100%y)
scvPointsLAO.Panel.LoadLayout("Points")
tabPages.AddTab2("Points", scvPointsLAO)
The big containing scrollview, scvPointsLAO, scrolls when I click on the scrollview in the Points Layout.
Any help would be greatly appreciated.
John