Skip to content Skip to sidebar Skip to footer

Android: Can Background Activities Execute Code?

Are Activities in the background considered 'running' (and can execute code) or are they in a suspended state?

Solution 1:

They are paused: Activity Life Cycle, so you cannot execute code from there.

alt text

Post a Comment for "Android: Can Background Activities Execute Code?"