Sorry Klaus, but not all that i do in b4a is very clear.
You load "LyTab" onto Tab "Intestazione", what do you have in "LyTab" ?
LyTab is a layaout with only scrollview (SVTab)
Then you remove SVTab, why ? This line is removed
Then you add SVTab onto the Activity and not onto a Tab, why ?
I thinked that is the right metod per add SVTab on my layout. How can add SVTab at the Tab?
The scroll begin after label of tabs, so scroller only this part of screen
Activity.AddView(SVTab, 5,230, 99%x, 100%y)
SVTab.Top is 230, but the Height is 100%y so the bottom of SVTab is below the lower screen edge !?
I thinked that is the right metod, and 100% is the total space between top (230) and the botton of screen.
Then you initialize a Panel and add it onto SVTab.Panel
SVTab.Panel.AddView(PnTab, 0,0, 100%x, 1280)
with a height of 1280, you should use dip values and not absolute pixels.
Then you load "LyTesta" ontp PnTab.
PnTab.LoadLayout("LyTesta")
Then you set SVTab.Panel.Height = 1170
The height is 1170, but PnTab.Height is 1280, why ?
1280 is the height of display (10" portrait), 1170 is the height after top scroll view. So if the display is smaller by heigth scrolling is possible show all screen.
Tanks.