Home | History | Annotate | Download | only in components

Lines Matching full:lifecycle

27   <li><a href="#Lifecycle">Managing the Activity Lifecycle</a>
29 <li><a href="#ImplementingLifecycleCallbacks">Implementing the lifecycle callbacks</a></li>
72 through the activity's lifecycle callback methods.
79 are all part of the activity lifecycle.</p>
82 including a complete discussion of how the activity lifecycle works, so you can properly manage
91 system calls when the activity transitions between various states of its lifecycle, such as when
109 <p>There are several other lifecycle callback methods that you should use in order to provide a
111 to be stopped and even destroyed. All of the lifecycle callback methods are discussed later, in
112 the section about <a href="#Lifecycle">Managing the Activity Lifecycle</a>.</p>
343 using these methods. As discussed in the following section about the activity lifecycle, the
350 <h2 id="Lifecycle">Managing the Activity Lifecycle</h2>
352 <p>Managing the lifecycle of your activities by implementing callback methods is
354 and flexible application. The lifecycle of an activity is directly affected by its association with
386 <h3 id="ImplementingLifecycleCallbacks">Implementing the lifecycle callbacks</h3>
391 activity includes each of the fundamental lifecycle methods:</p>
429 <p class="note"><strong>Note:</strong> Your implementation of these lifecycle methods must
432 <p>Taken together, these methods define the entire lifecycle of an activity. By implementing these
433 methods, you can monitor three nested loops in the activity lifecycle: </p>
472 <p class="img-caption"><strong>Figure 1.</strong> The activity lifecycle.</p>
474 <p>The same lifecycle callback methods are listed in table 1, which describes each of the callback
476 activity's overall lifecycle, including whether the system can kill the activity after the
479 <p class="table-caption"><strong>Table 1.</strong> A summary of the activity lifecycle's
611 <p>The introduction to <a href="#Lifecycle">Managing the Activity Lifecycle</a> briefly mentions
726 unexpected events in the activity lifecycle.</p>
742 <p>When one activity starts another, they both experience lifecycle transitions. The first activity
749 <p>The order of lifecycle callbacks is well defined, particularly when the two activities are in the
764 <p>This predictable sequence of lifecycle callbacks allows you to manage the transition of