It would be nice to be able to reference variables from Globals/Process_Globals easily. One way to do it would be similar to how custom types are referenced.
Here is what I imagine.
Maybe it would be better to not split up Globals and Process_Globals for cross platform compatibility between B4A and B4i.
Here is what I imagine.
Proposed Code:
Sub Process_Globals
Dim SomeVariable as String
End Sub
Sub Globals
Dim SomeImageView as ImageView
End Sub
Sub Activity_Create(FirstTime as Boolean)
Vars.Globals.SomeImageView.Initialize("")
Vars.Process_Globals.SomeString = "Test"
End Sub
Maybe it would be better to not split up Globals and Process_Globals for cross platform compatibility between B4A and B4i.