Slide 5
Slide 5 text
Lifecycle of DreamService
● onAttachedToWindow()
○ Use this for initial setup, such as calling setContentView().
● onDreamingStarted()
○ Your dream has started, so you should begin animations or other behaviors here.
● onDreamingStopped()
○ Use this to stop the things you started in onDreamingStarted().
● onDetachedFromWindow()
○ Use this to dismantle resources (for example, detach from handlers and listeners).