Hello Everyone
In my app i am loading some stuff (Panels, Labels, ImageViews) in a Scrollview.
While loading, the animations of other elements of the GUI get freezed.
I tryied to use Threading in this way
Where LoadAllTheStuff is the subb that i usually call for loading everything in the ScrollView.
The code above seems to help me a bit. Is there another way to avoid freezes or lags?
In my app i am loading some stuff (Panels, Labels, ImageViews) in a Scrollview.
While loading, the animations of other elements of the GUI get freezed.
I tryied to use Threading in this way
B4X:
Dim Params(1) As Object
Params(0)="nothing"
ThreadHome.RunOnGuiThread("LoadAllTheStuff", Params)
Where LoadAllTheStuff is the subb that i usually call for loading everything in the ScrollView.
The code above seems to help me a bit. Is there another way to avoid freezes or lags?