mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
464 B
464 B
Application Lifecycle
The app goes through these states:
Let's look at a scenario where an app launches another app:
firstapp starts:first.onStart()->first.onShow()secondapp starts:first.onHide()->second.onStart()->second.onShow()secondapp stops:second.onHide()->second.onStop()->first.onShow()firstapp stops:first.onHide()->first.onStop()
