Hi , Dou you know How to list all views of tabhost ?
i would like to resize by code all views on my tabHost.
I do this for Activity :
This code Work but if i have a tabhost in my activity, All view of this tab host was not resized...
i would like to resize by code all views on my tabHost.
I do this for Activity :
B4X:
For i = 0 to Activity.NumberOfView -1
Dim MyView as View
MyView = Activity.GetView(i)
MyView.SetLayout(MyView.Left*Ratio, MyView.Top*Ratio, MyView.Width*Ratio, MyView.Height*Ratio)
next
This code Work but if i have a tabhost in my activity, All view of this tab host was not resized...