Android Question Call sub: directly & CallSubDelayed?

agraham

Expert
Licensed User
Longtime User
Calling the Sub directly executes the called Sub immediately before returning to complete the rest of code in the calling Sub. CallSubDelayed posts the call to the apps message loop and so the Sub will only be called when the calling Sub, and any others in the call chain, all complete and execution returns to the message loop which will then call the delayed Sub.
 
Upvote 0
Top