Activity.java revision 85d558cd486d195aabfc4b43cff8f338126f60a5
1/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.app;
18
19import android.annotation.NonNull;
20import android.os.PersistableBundle;
21import android.transition.Scene;
22import android.transition.TransitionManager;
23import android.util.ArrayMap;
24import android.util.SuperNotCalledException;
25import android.widget.Toolbar;
26
27import com.android.internal.app.IVoiceInteractor;
28import com.android.internal.app.WindowDecorActionBar;
29import com.android.internal.app.ToolbarActionBar;
30import com.android.internal.policy.PolicyManager;
31
32import android.annotation.IntDef;
33import android.annotation.Nullable;
34import android.annotation.SystemApi;
35import android.app.admin.DevicePolicyManager;
36import android.content.ComponentCallbacks2;
37import android.content.ComponentName;
38import android.content.ContentResolver;
39import android.content.Context;
40import android.content.CursorLoader;
41import android.content.IIntentSender;
42import android.content.Intent;
43import android.content.IntentSender;
44import android.content.SharedPreferences;
45import android.content.pm.ActivityInfo;
46import android.content.pm.PackageManager;
47import android.content.pm.PackageManager.NameNotFoundException;
48import android.content.res.Configuration;
49import android.content.res.Resources;
50import android.content.res.TypedArray;
51import android.database.Cursor;
52import android.graphics.Bitmap;
53import android.graphics.Canvas;
54import android.graphics.drawable.Drawable;
55import android.media.AudioManager;
56import android.media.session.MediaController;
57import android.net.Uri;
58import android.os.Build;
59import android.os.Bundle;
60import android.os.Handler;
61import android.os.IBinder;
62import android.os.Looper;
63import android.os.Parcelable;
64import android.os.RemoteException;
65import android.os.StrictMode;
66import android.os.UserHandle;
67import android.text.Selection;
68import android.text.SpannableStringBuilder;
69import android.text.TextUtils;
70import android.text.method.TextKeyListener;
71import android.util.AttributeSet;
72import android.util.EventLog;
73import android.util.Log;
74import android.util.PrintWriterPrinter;
75import android.util.Slog;
76import android.util.SparseArray;
77import android.view.ActionMode;
78import android.view.ContextMenu;
79import android.view.ContextMenu.ContextMenuInfo;
80import android.view.ContextThemeWrapper;
81import android.view.KeyEvent;
82import android.view.LayoutInflater;
83import android.view.Menu;
84import android.view.MenuInflater;
85import android.view.MenuItem;
86import android.view.MotionEvent;
87import android.view.View;
88import android.view.View.OnCreateContextMenuListener;
89import android.view.ViewGroup;
90import android.view.ViewGroup.LayoutParams;
91import android.view.ViewManager;
92import android.view.Window;
93import android.view.WindowManager;
94import android.view.WindowManagerGlobal;
95import android.view.accessibility.AccessibilityEvent;
96import android.widget.AdapterView;
97
98import java.io.FileDescriptor;
99import java.io.PrintWriter;
100import java.lang.annotation.Retention;
101import java.lang.annotation.RetentionPolicy;
102import java.util.ArrayList;
103import java.util.HashMap;
104
105/**
106 * An activity is a single, focused thing that the user can do.  Almost all
107 * activities interact with the user, so the Activity class takes care of
108 * creating a window for you in which you can place your UI with
109 * {@link #setContentView}.  While activities are often presented to the user
110 * as full-screen windows, they can also be used in other ways: as floating
111 * windows (via a theme with {@link android.R.attr#windowIsFloating} set)
112 * or embedded inside of another activity (using {@link ActivityGroup}).
113 *
114 * There are two methods almost all subclasses of Activity will implement:
115 *
116 * <ul>
117 *     <li> {@link #onCreate} is where you initialize your activity.  Most
118 *     importantly, here you will usually call {@link #setContentView(int)}
119 *     with a layout resource defining your UI, and using {@link #findViewById}
120 *     to retrieve the widgets in that UI that you need to interact with
121 *     programmatically.
122 *
123 *     <li> {@link #onPause} is where you deal with the user leaving your
124 *     activity.  Most importantly, any changes made by the user should at this
125 *     point be committed (usually to the
126 *     {@link android.content.ContentProvider} holding the data).
127 * </ul>
128 *
129 * <p>To be of use with {@link android.content.Context#startActivity Context.startActivity()}, all
130 * activity classes must have a corresponding
131 * {@link android.R.styleable#AndroidManifestActivity &lt;activity&gt;}
132 * declaration in their package's <code>AndroidManifest.xml</code>.</p>
133 *
134 * <p>Topics covered here:
135 * <ol>
136 * <li><a href="#Fragments">Fragments</a>
137 * <li><a href="#ActivityLifecycle">Activity Lifecycle</a>
138 * <li><a href="#ConfigurationChanges">Configuration Changes</a>
139 * <li><a href="#StartingActivities">Starting Activities and Getting Results</a>
140 * <li><a href="#SavingPersistentState">Saving Persistent State</a>
141 * <li><a href="#Permissions">Permissions</a>
142 * <li><a href="#ProcessLifecycle">Process Lifecycle</a>
143 * </ol>
144 *
145 * <div class="special reference">
146 * <h3>Developer Guides</h3>
147 * <p>The Activity class is an important part of an application's overall lifecycle,
148 * and the way activities are launched and put together is a fundamental
149 * part of the platform's application model. For a detailed perspective on the structure of an
150 * Android application and how activities behave, please read the
151 * <a href="{@docRoot}guide/topics/fundamentals.html">Application Fundamentals</a> and
152 * <a href="{@docRoot}guide/topics/fundamentals/tasks-and-back-stack.html">Tasks and Back Stack</a>
153 * developer guides.</p>
154 *
155 * <p>You can also find a detailed discussion about how to create activities in the
156 * <a href="{@docRoot}guide/topics/fundamentals/activities.html">Activities</a>
157 * developer guide.</p>
158 * </div>
159 *
160 * <a name="Fragments"></a>
161 * <h3>Fragments</h3>
162 *
163 * <p>Starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB}, Activity
164 * implementations can make use of the {@link Fragment} class to better
165 * modularize their code, build more sophisticated user interfaces for larger
166 * screens, and help scale their application between small and large screens.
167 *
168 * <a name="ActivityLifecycle"></a>
169 * <h3>Activity Lifecycle</h3>
170 *
171 * <p>Activities in the system are managed as an <em>activity stack</em>.
172 * When a new activity is started, it is placed on the top of the stack
173 * and becomes the running activity -- the previous activity always remains
174 * below it in the stack, and will not come to the foreground again until
175 * the new activity exits.</p>
176 *
177 * <p>An activity has essentially four states:</p>
178 * <ul>
179 *     <li> If an activity in the foreground of the screen (at the top of
180 *         the stack),
181 *         it is <em>active</em> or  <em>running</em>. </li>
182 *     <li>If an activity has lost focus but is still visible (that is, a new non-full-sized
183 *         or transparent activity has focus on top of your activity), it
184 *         is <em>paused</em>. A paused activity is completely alive (it
185 *         maintains all state and member information and remains attached to
186 *         the window manager), but can be killed by the system in extreme
187 *         low memory situations.
188 *     <li>If an activity is completely obscured by another activity,
189 *         it is <em>stopped</em>. It still retains all state and member information,
190 *         however, it is no longer visible to the user so its window is hidden
191 *         and it will often be killed by the system when memory is needed
192 *         elsewhere.</li>
193 *     <li>If an activity is paused or stopped, the system can drop the activity
194 *         from memory by either asking it to finish, or simply killing its
195 *         process.  When it is displayed again to the user, it must be
196 *         completely restarted and restored to its previous state.</li>
197 * </ul>
198 *
199 * <p>The following diagram shows the important state paths of an Activity.
200 * The square rectangles represent callback methods you can implement to
201 * perform operations when the Activity moves between states.  The colored
202 * ovals are major states the Activity can be in.</p>
203 *
204 * <p><img src="../../../images/activity_lifecycle.png"
205 *      alt="State diagram for an Android Activity Lifecycle." border="0" /></p>
206 *
207 * <p>There are three key loops you may be interested in monitoring within your
208 * activity:
209 *
210 * <ul>
211 * <li>The <b>entire lifetime</b> of an activity happens between the first call
212 * to {@link android.app.Activity#onCreate} through to a single final call
213 * to {@link android.app.Activity#onDestroy}.  An activity will do all setup
214 * of "global" state in onCreate(), and release all remaining resources in
215 * onDestroy().  For example, if it has a thread running in the background
216 * to download data from the network, it may create that thread in onCreate()
217 * and then stop the thread in onDestroy().
218 *
219 * <li>The <b>visible lifetime</b> of an activity happens between a call to
220 * {@link android.app.Activity#onStart} until a corresponding call to
221 * {@link android.app.Activity#onStop}.  During this time the user can see the
222 * activity on-screen, though it may not be in the foreground and interacting
223 * with the user.  Between these two methods you can maintain resources that
224 * are needed to show the activity to the user.  For example, you can register
225 * a {@link android.content.BroadcastReceiver} in onStart() to monitor for changes
226 * that impact your UI, and unregister it in onStop() when the user no
227 * longer sees what you are displaying.  The onStart() and onStop() methods
228 * can be called multiple times, as the activity becomes visible and hidden
229 * to the user.
230 *
231 * <li>The <b>foreground lifetime</b> of an activity happens between a call to
232 * {@link android.app.Activity#onResume} until a corresponding call to
233 * {@link android.app.Activity#onPause}.  During this time the activity is
234 * in front of all other activities and interacting with the user.  An activity
235 * can frequently go between the resumed and paused states -- for example when
236 * the device goes to sleep, when an activity result is delivered, when a new
237 * intent is delivered -- so the code in these methods should be fairly
238 * lightweight.
239 * </ul>
240 *
241 * <p>The entire lifecycle of an activity is defined by the following
242 * Activity methods.  All of these are hooks that you can override
243 * to do appropriate work when the activity changes state.  All
244 * activities will implement {@link android.app.Activity#onCreate}
245 * to do their initial setup; many will also implement
246 * {@link android.app.Activity#onPause} to commit changes to data and
247 * otherwise prepare to stop interacting with the user.  You should always
248 * call up to your superclass when implementing these methods.</p>
249 *
250 * </p>
251 * <pre class="prettyprint">
252 * public class Activity extends ApplicationContext {
253 *     protected void onCreate(Bundle savedInstanceState);
254 *
255 *     protected void onStart();
256 *
257 *     protected void onRestart();
258 *
259 *     protected void onResume();
260 *
261 *     protected void onPause();
262 *
263 *     protected void onStop();
264 *
265 *     protected void onDestroy();
266 * }
267 * </pre>
268 *
269 * <p>In general the movement through an activity's lifecycle looks like
270 * this:</p>
271 *
272 * <table border="2" width="85%" align="center" frame="hsides" rules="rows">
273 *     <colgroup align="left" span="3" />
274 *     <colgroup align="left" />
275 *     <colgroup align="center" />
276 *     <colgroup align="center" />
277 *
278 *     <thead>
279 *     <tr><th colspan="3">Method</th> <th>Description</th> <th>Killable?</th> <th>Next</th></tr>
280 *     </thead>
281 *
282 *     <tbody>
283 *     <tr><th colspan="3" align="left" border="0">{@link android.app.Activity#onCreate onCreate()}</th>
284 *         <td>Called when the activity is first created.
285 *             This is where you should do all of your normal static set up:
286 *             create views, bind data to lists, etc.  This method also
287 *             provides you with a Bundle containing the activity's previously
288 *             frozen state, if there was one.
289 *             <p>Always followed by <code>onStart()</code>.</td>
290 *         <td align="center">No</td>
291 *         <td align="center"><code>onStart()</code></td>
292 *     </tr>
293 *
294 *     <tr><td rowspan="5" style="border-left: none; border-right: none;">&nbsp;&nbsp;&nbsp;&nbsp;</td>
295 *         <th colspan="2" align="left" border="0">{@link android.app.Activity#onRestart onRestart()}</th>
296 *         <td>Called after your activity has been stopped, prior to it being
297 *             started again.
298 *             <p>Always followed by <code>onStart()</code></td>
299 *         <td align="center">No</td>
300 *         <td align="center"><code>onStart()</code></td>
301 *     </tr>
302 *
303 *     <tr><th colspan="2" align="left" border="0">{@link android.app.Activity#onStart onStart()}</th>
304 *         <td>Called when the activity is becoming visible to the user.
305 *             <p>Followed by <code>onResume()</code> if the activity comes
306 *             to the foreground, or <code>onStop()</code> if it becomes hidden.</td>
307 *         <td align="center">No</td>
308 *         <td align="center"><code>onResume()</code> or <code>onStop()</code></td>
309 *     </tr>
310 *
311 *     <tr><td rowspan="2" style="border-left: none;">&nbsp;&nbsp;&nbsp;&nbsp;</td>
312 *         <th align="left" border="0">{@link android.app.Activity#onResume onResume()}</th>
313 *         <td>Called when the activity will start
314 *             interacting with the user.  At this point your activity is at
315 *             the top of the activity stack, with user input going to it.
316 *             <p>Always followed by <code>onPause()</code>.</td>
317 *         <td align="center">No</td>
318 *         <td align="center"><code>onPause()</code></td>
319 *     </tr>
320 *
321 *     <tr><th align="left" border="0">{@link android.app.Activity#onPause onPause()}</th>
322 *         <td>Called when the system is about to start resuming a previous
323 *             activity.  This is typically used to commit unsaved changes to
324 *             persistent data, stop animations and other things that may be consuming
325 *             CPU, etc.  Implementations of this method must be very quick because
326 *             the next activity will not be resumed until this method returns.
327 *             <p>Followed by either <code>onResume()</code> if the activity
328 *             returns back to the front, or <code>onStop()</code> if it becomes
329 *             invisible to the user.</td>
330 *         <td align="center"><font color="#800000"><strong>Pre-{@link android.os.Build.VERSION_CODES#HONEYCOMB}</strong></font></td>
331 *         <td align="center"><code>onResume()</code> or<br>
332 *                 <code>onStop()</code></td>
333 *     </tr>
334 *
335 *     <tr><th colspan="2" align="left" border="0">{@link android.app.Activity#onStop onStop()}</th>
336 *         <td>Called when the activity is no longer visible to the user, because
337 *             another activity has been resumed and is covering this one.  This
338 *             may happen either because a new activity is being started, an existing
339 *             one is being brought in front of this one, or this one is being
340 *             destroyed.
341 *             <p>Followed by either <code>onRestart()</code> if
342 *             this activity is coming back to interact with the user, or
343 *             <code>onDestroy()</code> if this activity is going away.</td>
344 *         <td align="center"><font color="#800000"><strong>Yes</strong></font></td>
345 *         <td align="center"><code>onRestart()</code> or<br>
346 *                 <code>onDestroy()</code></td>
347 *     </tr>
348 *
349 *     <tr><th colspan="3" align="left" border="0">{@link android.app.Activity#onDestroy onDestroy()}</th>
350 *         <td>The final call you receive before your
351 *             activity is destroyed.  This can happen either because the
352 *             activity is finishing (someone called {@link Activity#finish} on
353 *             it, or because the system is temporarily destroying this
354 *             instance of the activity to save space.  You can distinguish
355 *             between these two scenarios with the {@link
356 *             Activity#isFinishing} method.</td>
357 *         <td align="center"><font color="#800000"><strong>Yes</strong></font></td>
358 *         <td align="center"><em>nothing</em></td>
359 *     </tr>
360 *     </tbody>
361 * </table>
362 *
363 * <p>Note the "Killable" column in the above table -- for those methods that
364 * are marked as being killable, after that method returns the process hosting the
365 * activity may killed by the system <em>at any time</em> without another line
366 * of its code being executed.  Because of this, you should use the
367 * {@link #onPause} method to write any persistent data (such as user edits)
368 * to storage.  In addition, the method
369 * {@link #onSaveInstanceState(Bundle)} is called before placing the activity
370 * in such a background state, allowing you to save away any dynamic instance
371 * state in your activity into the given Bundle, to be later received in
372 * {@link #onCreate} if the activity needs to be re-created.
373 * See the <a href="#ProcessLifecycle">Process Lifecycle</a>
374 * section for more information on how the lifecycle of a process is tied
375 * to the activities it is hosting.  Note that it is important to save
376 * persistent data in {@link #onPause} instead of {@link #onSaveInstanceState}
377 * because the latter is not part of the lifecycle callbacks, so will not
378 * be called in every situation as described in its documentation.</p>
379 *
380 * <p class="note">Be aware that these semantics will change slightly between
381 * applications targeting platforms starting with {@link android.os.Build.VERSION_CODES#HONEYCOMB}
382 * vs. those targeting prior platforms.  Starting with Honeycomb, an application
383 * is not in the killable state until its {@link #onStop} has returned.  This
384 * impacts when {@link #onSaveInstanceState(Bundle)} may be called (it may be
385 * safely called after {@link #onPause()} and allows and application to safely
386 * wait until {@link #onStop()} to save persistent state.</p>
387 *
388 * <p>For those methods that are not marked as being killable, the activity's
389 * process will not be killed by the system starting from the time the method
390 * is called and continuing after it returns.  Thus an activity is in the killable
391 * state, for example, between after <code>onPause()</code> to the start of
392 * <code>onResume()</code>.</p>
393 *
394 * <a name="ConfigurationChanges"></a>
395 * <h3>Configuration Changes</h3>
396 *
397 * <p>If the configuration of the device (as defined by the
398 * {@link Configuration Resources.Configuration} class) changes,
399 * then anything displaying a user interface will need to update to match that
400 * configuration.  Because Activity is the primary mechanism for interacting
401 * with the user, it includes special support for handling configuration
402 * changes.</p>
403 *
404 * <p>Unless you specify otherwise, a configuration change (such as a change
405 * in screen orientation, language, input devices, etc) will cause your
406 * current activity to be <em>destroyed</em>, going through the normal activity
407 * lifecycle process of {@link #onPause},
408 * {@link #onStop}, and {@link #onDestroy} as appropriate.  If the activity
409 * had been in the foreground or visible to the user, once {@link #onDestroy} is
410 * called in that instance then a new instance of the activity will be
411 * created, with whatever savedInstanceState the previous instance had generated
412 * from {@link #onSaveInstanceState}.</p>
413 *
414 * <p>This is done because any application resource,
415 * including layout files, can change based on any configuration value.  Thus
416 * the only safe way to handle a configuration change is to re-retrieve all
417 * resources, including layouts, drawables, and strings.  Because activities
418 * must already know how to save their state and re-create themselves from
419 * that state, this is a convenient way to have an activity restart itself
420 * with a new configuration.</p>
421 *
422 * <p>In some special cases, you may want to bypass restarting of your
423 * activity based on one or more types of configuration changes.  This is
424 * done with the {@link android.R.attr#configChanges android:configChanges}
425 * attribute in its manifest.  For any types of configuration changes you say
426 * that you handle there, you will receive a call to your current activity's
427 * {@link #onConfigurationChanged} method instead of being restarted.  If
428 * a configuration change involves any that you do not handle, however, the
429 * activity will still be restarted and {@link #onConfigurationChanged}
430 * will not be called.</p>
431 *
432 * <a name="StartingActivities"></a>
433 * <h3>Starting Activities and Getting Results</h3>
434 *
435 * <p>The {@link android.app.Activity#startActivity}
436 * method is used to start a
437 * new activity, which will be placed at the top of the activity stack.  It
438 * takes a single argument, an {@link android.content.Intent Intent},
439 * which describes the activity
440 * to be executed.</p>
441 *
442 * <p>Sometimes you want to get a result back from an activity when it
443 * ends.  For example, you may start an activity that lets the user pick
444 * a person in a list of contacts; when it ends, it returns the person
445 * that was selected.  To do this, you call the
446 * {@link android.app.Activity#startActivityForResult(Intent, int)}
447 * version with a second integer parameter identifying the call.  The result
448 * will come back through your {@link android.app.Activity#onActivityResult}
449 * method.</p>
450 *
451 * <p>When an activity exits, it can call
452 * {@link android.app.Activity#setResult(int)}
453 * to return data back to its parent.  It must always supply a result code,
454 * which can be the standard results RESULT_CANCELED, RESULT_OK, or any
455 * custom values starting at RESULT_FIRST_USER.  In addition, it can optionally
456 * return back an Intent containing any additional data it wants.  All of this
457 * information appears back on the
458 * parent's <code>Activity.onActivityResult()</code>, along with the integer
459 * identifier it originally supplied.</p>
460 *
461 * <p>If a child activity fails for any reason (such as crashing), the parent
462 * activity will receive a result with the code RESULT_CANCELED.</p>
463 *
464 * <pre class="prettyprint">
465 * public class MyActivity extends Activity {
466 *     ...
467 *
468 *     static final int PICK_CONTACT_REQUEST = 0;
469 *
470 *     public boolean onKeyDown(int keyCode, KeyEvent event) {
471 *         if (keyCode == KeyEvent.KEYCODE_DPAD_CENTER) {
472 *             // When the user center presses, let them pick a contact.
473 *             startActivityForResult(
474 *                 new Intent(Intent.ACTION_PICK,
475 *                 new Uri("content://contacts")),
476 *                 PICK_CONTACT_REQUEST);
477 *            return true;
478 *         }
479 *         return false;
480 *     }
481 *
482 *     protected void onActivityResult(int requestCode, int resultCode,
483 *             Intent data) {
484 *         if (requestCode == PICK_CONTACT_REQUEST) {
485 *             if (resultCode == RESULT_OK) {
486 *                 // A contact was picked.  Here we will just display it
487 *                 // to the user.
488 *                 startActivity(new Intent(Intent.ACTION_VIEW, data));
489 *             }
490 *         }
491 *     }
492 * }
493 * </pre>
494 *
495 * <a name="SavingPersistentState"></a>
496 * <h3>Saving Persistent State</h3>
497 *
498 * <p>There are generally two kinds of persistent state than an activity
499 * will deal with: shared document-like data (typically stored in a SQLite
500 * database using a {@linkplain android.content.ContentProvider content provider})
501 * and internal state such as user preferences.</p>
502 *
503 * <p>For content provider data, we suggest that activities use a
504 * "edit in place" user model.  That is, any edits a user makes are effectively
505 * made immediately without requiring an additional confirmation step.
506 * Supporting this model is generally a simple matter of following two rules:</p>
507 *
508 * <ul>
509 *     <li> <p>When creating a new document, the backing database entry or file for
510 *             it is created immediately.  For example, if the user chooses to write
511 *             a new e-mail, a new entry for that e-mail is created as soon as they
512 *             start entering data, so that if they go to any other activity after
513 *             that point this e-mail will now appear in the list of drafts.</p>
514 *     <li> <p>When an activity's <code>onPause()</code> method is called, it should
515 *             commit to the backing content provider or file any changes the user
516 *             has made.  This ensures that those changes will be seen by any other
517 *             activity that is about to run.  You will probably want to commit
518 *             your data even more aggressively at key times during your
519 *             activity's lifecycle: for example before starting a new
520 *             activity, before finishing your own activity, when the user
521 *             switches between input fields, etc.</p>
522 * </ul>
523 *
524 * <p>This model is designed to prevent data loss when a user is navigating
525 * between activities, and allows the system to safely kill an activity (because
526 * system resources are needed somewhere else) at any time after it has been
527 * paused.  Note this implies
528 * that the user pressing BACK from your activity does <em>not</em>
529 * mean "cancel" -- it means to leave the activity with its current contents
530 * saved away.  Canceling edits in an activity must be provided through
531 * some other mechanism, such as an explicit "revert" or "undo" option.</p>
532 *
533 * <p>See the {@linkplain android.content.ContentProvider content package} for
534 * more information about content providers.  These are a key aspect of how
535 * different activities invoke and propagate data between themselves.</p>
536 *
537 * <p>The Activity class also provides an API for managing internal persistent state
538 * associated with an activity.  This can be used, for example, to remember
539 * the user's preferred initial display in a calendar (day view or week view)
540 * or the user's default home page in a web browser.</p>
541 *
542 * <p>Activity persistent state is managed
543 * with the method {@link #getPreferences},
544 * allowing you to retrieve and
545 * modify a set of name/value pairs associated with the activity.  To use
546 * preferences that are shared across multiple application components
547 * (activities, receivers, services, providers), you can use the underlying
548 * {@link Context#getSharedPreferences Context.getSharedPreferences()} method
549 * to retrieve a preferences
550 * object stored under a specific name.
551 * (Note that it is not possible to share settings data across application
552 * packages -- for that you will need a content provider.)</p>
553 *
554 * <p>Here is an excerpt from a calendar activity that stores the user's
555 * preferred view mode in its persistent settings:</p>
556 *
557 * <pre class="prettyprint">
558 * public class CalendarActivity extends Activity {
559 *     ...
560 *
561 *     static final int DAY_VIEW_MODE = 0;
562 *     static final int WEEK_VIEW_MODE = 1;
563 *
564 *     private SharedPreferences mPrefs;
565 *     private int mCurViewMode;
566 *
567 *     protected void onCreate(Bundle savedInstanceState) {
568 *         super.onCreate(savedInstanceState);
569 *
570 *         SharedPreferences mPrefs = getSharedPreferences();
571 *         mCurViewMode = mPrefs.getInt("view_mode", DAY_VIEW_MODE);
572 *     }
573 *
574 *     protected void onPause() {
575 *         super.onPause();
576 *
577 *         SharedPreferences.Editor ed = mPrefs.edit();
578 *         ed.putInt("view_mode", mCurViewMode);
579 *         ed.commit();
580 *     }
581 * }
582 * </pre>
583 *
584 * <a name="Permissions"></a>
585 * <h3>Permissions</h3>
586 *
587 * <p>The ability to start a particular Activity can be enforced when it is
588 * declared in its
589 * manifest's {@link android.R.styleable#AndroidManifestActivity &lt;activity&gt;}
590 * tag.  By doing so, other applications will need to declare a corresponding
591 * {@link android.R.styleable#AndroidManifestUsesPermission &lt;uses-permission&gt;}
592 * element in their own manifest to be able to start that activity.
593 *
594 * <p>When starting an Activity you can set {@link Intent#FLAG_GRANT_READ_URI_PERMISSION
595 * Intent.FLAG_GRANT_READ_URI_PERMISSION} and/or {@link Intent#FLAG_GRANT_WRITE_URI_PERMISSION
596 * Intent.FLAG_GRANT_WRITE_URI_PERMISSION} on the Intent.  This will grant the
597 * Activity access to the specific URIs in the Intent.  Access will remain
598 * until the Activity has finished (it will remain across the hosting
599 * process being killed and other temporary destruction).  As of
600 * {@link android.os.Build.VERSION_CODES#GINGERBREAD}, if the Activity
601 * was already created and a new Intent is being delivered to
602 * {@link #onNewIntent(Intent)}, any newly granted URI permissions will be added
603 * to the existing ones it holds.
604 *
605 * <p>See the <a href="{@docRoot}guide/topics/security/security.html">Security and Permissions</a>
606 * document for more information on permissions and security in general.
607 *
608 * <a name="ProcessLifecycle"></a>
609 * <h3>Process Lifecycle</h3>
610 *
611 * <p>The Android system attempts to keep application process around for as
612 * long as possible, but eventually will need to remove old processes when
613 * memory runs low.  As described in <a href="#ActivityLifecycle">Activity
614 * Lifecycle</a>, the decision about which process to remove is intimately
615 * tied to the state of the user's interaction with it.  In general, there
616 * are four states a process can be in based on the activities running in it,
617 * listed here in order of importance.  The system will kill less important
618 * processes (the last ones) before it resorts to killing more important
619 * processes (the first ones).
620 *
621 * <ol>
622 * <li> <p>The <b>foreground activity</b> (the activity at the top of the screen
623 * that the user is currently interacting with) is considered the most important.
624 * Its process will only be killed as a last resort, if it uses more memory
625 * than is available on the device.  Generally at this point the device has
626 * reached a memory paging state, so this is required in order to keep the user
627 * interface responsive.
628 * <li> <p>A <b>visible activity</b> (an activity that is visible to the user
629 * but not in the foreground, such as one sitting behind a foreground dialog)
630 * is considered extremely important and will not be killed unless that is
631 * required to keep the foreground activity running.
632 * <li> <p>A <b>background activity</b> (an activity that is not visible to
633 * the user and has been paused) is no longer critical, so the system may
634 * safely kill its process to reclaim memory for other foreground or
635 * visible processes.  If its process needs to be killed, when the user navigates
636 * back to the activity (making it visible on the screen again), its
637 * {@link #onCreate} method will be called with the savedInstanceState it had previously
638 * supplied in {@link #onSaveInstanceState} so that it can restart itself in the same
639 * state as the user last left it.
640 * <li> <p>An <b>empty process</b> is one hosting no activities or other
641 * application components (such as {@link Service} or
642 * {@link android.content.BroadcastReceiver} classes).  These are killed very
643 * quickly by the system as memory becomes low.  For this reason, any
644 * background operation you do outside of an activity must be executed in the
645 * context of an activity BroadcastReceiver or Service to ensure that the system
646 * knows it needs to keep your process around.
647 * </ol>
648 *
649 * <p>Sometimes an Activity may need to do a long-running operation that exists
650 * independently of the activity lifecycle itself.  An example may be a camera
651 * application that allows you to upload a picture to a web site.  The upload
652 * may take a long time, and the application should allow the user to leave
653 * the application will it is executing.  To accomplish this, your Activity
654 * should start a {@link Service} in which the upload takes place.  This allows
655 * the system to properly prioritize your process (considering it to be more
656 * important than other non-visible applications) for the duration of the
657 * upload, independent of whether the original activity is paused, stopped,
658 * or finished.
659 */
660public class Activity extends ContextThemeWrapper
661        implements LayoutInflater.Factory2,
662        Window.Callback, KeyEvent.Callback,
663        OnCreateContextMenuListener, ComponentCallbacks2,
664        Window.OnWindowDismissedCallback {
665    private static final String TAG = "Activity";
666    private static final boolean DEBUG_LIFECYCLE = false;
667
668    /** Standard activity result: operation canceled. */
669    public static final int RESULT_CANCELED    = 0;
670    /** Standard activity result: operation succeeded. */
671    public static final int RESULT_OK           = -1;
672    /** Start of user-defined activity results. */
673    public static final int RESULT_FIRST_USER   = 1;
674
675    static final String FRAGMENTS_TAG = "android:fragments";
676
677    private static final String WINDOW_HIERARCHY_TAG = "android:viewHierarchyState";
678    private static final String SAVED_DIALOG_IDS_KEY = "android:savedDialogIds";
679    private static final String SAVED_DIALOGS_TAG = "android:savedDialogs";
680    private static final String SAVED_DIALOG_KEY_PREFIX = "android:dialog_";
681    private static final String SAVED_DIALOG_ARGS_KEY_PREFIX = "android:dialog_args_";
682
683    private static class ManagedDialog {
684        Dialog mDialog;
685        Bundle mArgs;
686    }
687    private SparseArray<ManagedDialog> mManagedDialogs;
688
689    // set by the thread after the constructor and before onCreate(Bundle savedInstanceState) is called.
690    private Instrumentation mInstrumentation;
691    private IBinder mToken;
692    private int mIdent;
693    /*package*/ String mEmbeddedID;
694    private Application mApplication;
695    /*package*/ Intent mIntent;
696    /*package*/ String mReferrer;
697    private ComponentName mComponent;
698    /*package*/ ActivityInfo mActivityInfo;
699    /*package*/ ActivityThread mMainThread;
700    Activity mParent;
701    boolean mCalled;
702    boolean mCheckedForLoaderManager;
703    boolean mLoadersStarted;
704    /*package*/ boolean mResumed;
705    private boolean mStopped;
706    boolean mFinished;
707    boolean mStartedActivity;
708    private boolean mDestroyed;
709    private boolean mDoReportFullyDrawn = true;
710    /** true if the activity is going through a transient pause */
711    /*package*/ boolean mTemporaryPause = false;
712    /** true if the activity is being destroyed in order to recreate it with a new configuration */
713    /*package*/ boolean mChangingConfigurations = false;
714    /*package*/ int mConfigChangeFlags;
715    /*package*/ Configuration mCurrentConfig;
716    private SearchManager mSearchManager;
717    private MenuInflater mMenuInflater;
718
719    static final class NonConfigurationInstances {
720        Object activity;
721        HashMap<String, Object> children;
722        ArrayList<Fragment> fragments;
723        ArrayMap<String, LoaderManagerImpl> loaders;
724        VoiceInteractor voiceInteractor;
725    }
726    /* package */ NonConfigurationInstances mLastNonConfigurationInstances;
727
728    private Window mWindow;
729
730    private WindowManager mWindowManager;
731    /*package*/ View mDecor = null;
732    /*package*/ boolean mWindowAdded = false;
733    /*package*/ boolean mVisibleFromServer = false;
734    /*package*/ boolean mVisibleFromClient = true;
735    /*package*/ ActionBar mActionBar = null;
736    private boolean mEnableDefaultActionBarUp;
737
738    private VoiceInteractor mVoiceInteractor;
739
740    private CharSequence mTitle;
741    private int mTitleColor = 0;
742
743    final FragmentManagerImpl mFragments = new FragmentManagerImpl();
744    final FragmentContainer mContainer = new FragmentContainer() {
745        @Override
746        public View findViewById(int id) {
747            return Activity.this.findViewById(id);
748        }
749        @Override
750        public boolean hasView() {
751            Window window = Activity.this.getWindow();
752            return (window != null && window.peekDecorView() != null);
753        }
754    };
755
756    // Most recent call to requestVisibleBehind().
757    boolean mVisibleBehind;
758
759    ArrayMap<String, LoaderManagerImpl> mAllLoaderManagers;
760    LoaderManagerImpl mLoaderManager;
761
762    private static final class ManagedCursor {
763        ManagedCursor(Cursor cursor) {
764            mCursor = cursor;
765            mReleased = false;
766            mUpdated = false;
767        }
768
769        private final Cursor mCursor;
770        private boolean mReleased;
771        private boolean mUpdated;
772    }
773    private final ArrayList<ManagedCursor> mManagedCursors =
774        new ArrayList<ManagedCursor>();
775
776    // protected by synchronized (this)
777    int mResultCode = RESULT_CANCELED;
778    Intent mResultData = null;
779
780    private TranslucentConversionListener mTranslucentCallback;
781    private boolean mChangeCanvasToTranslucent;
782
783    private boolean mTitleReady = false;
784
785    private int mDefaultKeyMode = DEFAULT_KEYS_DISABLE;
786    private SpannableStringBuilder mDefaultKeySsb = null;
787
788    protected static final int[] FOCUSED_STATE_SET = {com.android.internal.R.attr.state_focused};
789
790    @SuppressWarnings("unused")
791    private final Object mInstanceTracker = StrictMode.trackActivity(this);
792
793    private Thread mUiThread;
794    final Handler mHandler = new Handler();
795
796    ActivityTransitionState mActivityTransitionState = new ActivityTransitionState();
797    SharedElementCallback mEnterTransitionListener = SharedElementCallback.NULL_CALLBACK;
798    SharedElementCallback mExitTransitionListener = SharedElementCallback.NULL_CALLBACK;
799
800    /** Return the intent that started this activity. */
801    public Intent getIntent() {
802        return mIntent;
803    }
804
805    /**
806     * Change the intent returned by {@link #getIntent}.  This holds a
807     * reference to the given intent; it does not copy it.  Often used in
808     * conjunction with {@link #onNewIntent}.
809     *
810     * @param newIntent The new Intent object to return from getIntent
811     *
812     * @see #getIntent
813     * @see #onNewIntent
814     */
815    public void setIntent(Intent newIntent) {
816        mIntent = newIntent;
817    }
818
819    /** Return the application that owns this activity. */
820    public final Application getApplication() {
821        return mApplication;
822    }
823
824    /** Is this activity embedded inside of another activity? */
825    public final boolean isChild() {
826        return mParent != null;
827    }
828
829    /** Return the parent activity if this view is an embedded child. */
830    public final Activity getParent() {
831        return mParent;
832    }
833
834    /** Retrieve the window manager for showing custom windows. */
835    public WindowManager getWindowManager() {
836        return mWindowManager;
837    }
838
839    /**
840     * Retrieve the current {@link android.view.Window} for the activity.
841     * This can be used to directly access parts of the Window API that
842     * are not available through Activity/Screen.
843     *
844     * @return Window The current window, or null if the activity is not
845     *         visual.
846     */
847    public Window getWindow() {
848        return mWindow;
849    }
850
851    /**
852     * Return the LoaderManager for this activity, creating it if needed.
853     */
854    public LoaderManager getLoaderManager() {
855        if (mLoaderManager != null) {
856            return mLoaderManager;
857        }
858        mCheckedForLoaderManager = true;
859        mLoaderManager = getLoaderManager("(root)", mLoadersStarted, true);
860        return mLoaderManager;
861    }
862
863    LoaderManagerImpl getLoaderManager(String who, boolean started, boolean create) {
864        if (mAllLoaderManagers == null) {
865            mAllLoaderManagers = new ArrayMap<String, LoaderManagerImpl>();
866        }
867        LoaderManagerImpl lm = mAllLoaderManagers.get(who);
868        if (lm == null) {
869            if (create) {
870                lm = new LoaderManagerImpl(who, this, started);
871                mAllLoaderManagers.put(who, lm);
872            }
873        } else {
874            lm.updateActivity(this);
875        }
876        return lm;
877    }
878
879    /**
880     * Calls {@link android.view.Window#getCurrentFocus} on the
881     * Window of this Activity to return the currently focused view.
882     *
883     * @return View The current View with focus or null.
884     *
885     * @see #getWindow
886     * @see android.view.Window#getCurrentFocus
887     */
888    @Nullable
889    public View getCurrentFocus() {
890        return mWindow != null ? mWindow.getCurrentFocus() : null;
891    }
892
893    /**
894     * Called when the activity is starting.  This is where most initialization
895     * should go: calling {@link #setContentView(int)} to inflate the
896     * activity's UI, using {@link #findViewById} to programmatically interact
897     * with widgets in the UI, calling
898     * {@link #managedQuery(android.net.Uri , String[], String, String[], String)} to retrieve
899     * cursors for data being displayed, etc.
900     *
901     * <p>You can call {@link #finish} from within this function, in
902     * which case onDestroy() will be immediately called without any of the rest
903     * of the activity lifecycle ({@link #onStart}, {@link #onResume},
904     * {@link #onPause}, etc) executing.
905     *
906     * <p><em>Derived classes must call through to the super class's
907     * implementation of this method.  If they do not, an exception will be
908     * thrown.</em></p>
909     *
910     * @param savedInstanceState If the activity is being re-initialized after
911     *     previously being shut down then this Bundle contains the data it most
912     *     recently supplied in {@link #onSaveInstanceState}.  <b><i>Note: Otherwise it is null.</i></b>
913     *
914     * @see #onStart
915     * @see #onSaveInstanceState
916     * @see #onRestoreInstanceState
917     * @see #onPostCreate
918     */
919    protected void onCreate(@Nullable Bundle savedInstanceState) {
920        if (DEBUG_LIFECYCLE) Slog.v(TAG, "onCreate " + this + ": " + savedInstanceState);
921        if (mLastNonConfigurationInstances != null) {
922            mAllLoaderManagers = mLastNonConfigurationInstances.loaders;
923        }
924        if (mActivityInfo.parentActivityName != null) {
925            if (mActionBar == null) {
926                mEnableDefaultActionBarUp = true;
927            } else {
928                mActionBar.setDefaultDisplayHomeAsUpEnabled(true);
929            }
930        }
931        if (savedInstanceState != null) {
932            Parcelable p = savedInstanceState.getParcelable(FRAGMENTS_TAG);
933            mFragments.restoreAllState(p, mLastNonConfigurationInstances != null
934                    ? mLastNonConfigurationInstances.fragments : null);
935        }
936        mFragments.dispatchCreate();
937        getApplication().dispatchActivityCreated(this, savedInstanceState);
938        if (mVoiceInteractor != null) {
939            mVoiceInteractor.attachActivity(this);
940        }
941        mCalled = true;
942    }
943
944    /**
945     * Same as {@link #onCreate(android.os.Bundle)} but called for those activities created with
946     * the attribute {@link android.R.attr#persistableMode} set to
947     * <code>persistAcrossReboots</code>.
948     *
949     * @param savedInstanceState if the activity is being re-initialized after
950     *     previously being shut down then this Bundle contains the data it most
951     *     recently supplied in {@link #onSaveInstanceState}.
952     *     <b><i>Note: Otherwise it is null.</i></b>
953     * @param persistentState if the activity is being re-initialized after
954     *     previously being shut down or powered off then this Bundle contains the data it most
955     *     recently supplied to outPersistentState in {@link #onSaveInstanceState}.
956     *     <b><i>Note: Otherwise it is null.</i></b>
957     *
958     * @see #onCreate(android.os.Bundle)
959     * @see #onStart
960     * @see #onSaveInstanceState
961     * @see #onRestoreInstanceState
962     * @see #onPostCreate
963     */
964    public void onCreate(@Nullable Bundle savedInstanceState,
965            @Nullable PersistableBundle persistentState) {
966        onCreate(savedInstanceState);
967    }
968
969    /**
970     * The hook for {@link ActivityThread} to restore the state of this activity.
971     *
972     * Calls {@link #onSaveInstanceState(android.os.Bundle)} and
973     * {@link #restoreManagedDialogs(android.os.Bundle)}.
974     *
975     * @param savedInstanceState contains the saved state
976     */
977    final void performRestoreInstanceState(Bundle savedInstanceState) {
978        onRestoreInstanceState(savedInstanceState);
979        restoreManagedDialogs(savedInstanceState);
980    }
981
982    /**
983     * The hook for {@link ActivityThread} to restore the state of this activity.
984     *
985     * Calls {@link #onSaveInstanceState(android.os.Bundle)} and
986     * {@link #restoreManagedDialogs(android.os.Bundle)}.
987     *
988     * @param savedInstanceState contains the saved state
989     * @param persistentState contains the persistable saved state
990     */
991    final void performRestoreInstanceState(Bundle savedInstanceState,
992            PersistableBundle persistentState) {
993        onRestoreInstanceState(savedInstanceState, persistentState);
994        if (savedInstanceState != null) {
995            restoreManagedDialogs(savedInstanceState);
996        }
997    }
998
999    /**
1000     * This method is called after {@link #onStart} when the activity is
1001     * being re-initialized from a previously saved state, given here in
1002     * <var>savedInstanceState</var>.  Most implementations will simply use {@link #onCreate}
1003     * to restore their state, but it is sometimes convenient to do it here
1004     * after all of the initialization has been done or to allow subclasses to
1005     * decide whether to use your default implementation.  The default
1006     * implementation of this method performs a restore of any view state that
1007     * had previously been frozen by {@link #onSaveInstanceState}.
1008     *
1009     * <p>This method is called between {@link #onStart} and
1010     * {@link #onPostCreate}.
1011     *
1012     * @param savedInstanceState the data most recently supplied in {@link #onSaveInstanceState}.
1013     *
1014     * @see #onCreate
1015     * @see #onPostCreate
1016     * @see #onResume
1017     * @see #onSaveInstanceState
1018     */
1019    protected void onRestoreInstanceState(Bundle savedInstanceState) {
1020        if (mWindow != null) {
1021            Bundle windowState = savedInstanceState.getBundle(WINDOW_HIERARCHY_TAG);
1022            if (windowState != null) {
1023                mWindow.restoreHierarchyState(windowState);
1024            }
1025        }
1026    }
1027
1028    /**
1029     * This is the same as {@link #onRestoreInstanceState(Bundle)} but is called for activities
1030     * created with the attribute {@link android.R.attr#persistableMode} set to
1031     * <code>persistAcrossReboots</code>. The {@link android.os.PersistableBundle} passed
1032     * came from the restored PersistableBundle first
1033     * saved in {@link #onSaveInstanceState(Bundle, PersistableBundle)}.
1034     *
1035     * <p>This method is called between {@link #onStart} and
1036     * {@link #onPostCreate}.
1037     *
1038     * <p>If this method is called {@link #onRestoreInstanceState(Bundle)} will not be called.
1039     *
1040     * @param savedInstanceState the data most recently supplied in {@link #onSaveInstanceState}.
1041     * @param persistentState the data most recently supplied in {@link #onSaveInstanceState}.
1042     *
1043     * @see #onRestoreInstanceState(Bundle)
1044     * @see #onCreate
1045     * @see #onPostCreate
1046     * @see #onResume
1047     * @see #onSaveInstanceState
1048     */
1049    public void onRestoreInstanceState(Bundle savedInstanceState,
1050            PersistableBundle persistentState) {
1051        if (savedInstanceState != null) {
1052            onRestoreInstanceState(savedInstanceState);
1053        }
1054    }
1055
1056    /**
1057     * Restore the state of any saved managed dialogs.
1058     *
1059     * @param savedInstanceState The bundle to restore from.
1060     */
1061    private void restoreManagedDialogs(Bundle savedInstanceState) {
1062        final Bundle b = savedInstanceState.getBundle(SAVED_DIALOGS_TAG);
1063        if (b == null) {
1064            return;
1065        }
1066
1067        final int[] ids = b.getIntArray(SAVED_DIALOG_IDS_KEY);
1068        final int numDialogs = ids.length;
1069        mManagedDialogs = new SparseArray<ManagedDialog>(numDialogs);
1070        for (int i = 0; i < numDialogs; i++) {
1071            final Integer dialogId = ids[i];
1072            Bundle dialogState = b.getBundle(savedDialogKeyFor(dialogId));
1073            if (dialogState != null) {
1074                // Calling onRestoreInstanceState() below will invoke dispatchOnCreate
1075                // so tell createDialog() not to do it, otherwise we get an exception
1076                final ManagedDialog md = new ManagedDialog();
1077                md.mArgs = b.getBundle(savedDialogArgsKeyFor(dialogId));
1078                md.mDialog = createDialog(dialogId, dialogState, md.mArgs);
1079                if (md.mDialog != null) {
1080                    mManagedDialogs.put(dialogId, md);
1081                    onPrepareDialog(dialogId, md.mDialog, md.mArgs);
1082                    md.mDialog.onRestoreInstanceState(dialogState);
1083                }
1084            }
1085        }
1086    }
1087
1088    private Dialog createDialog(Integer dialogId, Bundle state, Bundle args) {
1089        final Dialog dialog = onCreateDialog(dialogId, args);
1090        if (dialog == null) {
1091            return null;
1092        }
1093        dialog.dispatchOnCreate(state);
1094        return dialog;
1095    }
1096
1097    private static String savedDialogKeyFor(int key) {
1098        return SAVED_DIALOG_KEY_PREFIX + key;
1099    }
1100
1101    private static String savedDialogArgsKeyFor(int key) {
1102        return SAVED_DIALOG_ARGS_KEY_PREFIX + key;
1103    }
1104
1105    /**
1106     * Called when activity start-up is complete (after {@link #onStart}
1107     * and {@link #onRestoreInstanceState} have been called).  Applications will
1108     * generally not implement this method; it is intended for system
1109     * classes to do final initialization after application code has run.
1110     *
1111     * <p><em>Derived classes must call through to the super class's
1112     * implementation of this method.  If they do not, an exception will be
1113     * thrown.</em></p>
1114     *
1115     * @param savedInstanceState If the activity is being re-initialized after
1116     *     previously being shut down then this Bundle contains the data it most
1117     *     recently supplied in {@link #onSaveInstanceState}.  <b><i>Note: Otherwise it is null.</i></b>
1118     * @see #onCreate
1119     */
1120    protected void onPostCreate(@Nullable Bundle savedInstanceState) {
1121        if (!isChild()) {
1122            mTitleReady = true;
1123            onTitleChanged(getTitle(), getTitleColor());
1124        }
1125        mCalled = true;
1126    }
1127
1128    /**
1129     * This is the same as {@link #onPostCreate(Bundle)} but is called for activities
1130     * created with the attribute {@link android.R.attr#persistableMode} set to
1131     * <code>persistAcrossReboots</code>.
1132     *
1133     * @param savedInstanceState The data most recently supplied in {@link #onSaveInstanceState}
1134     * @param persistentState The data caming from the PersistableBundle first
1135     * saved in {@link #onSaveInstanceState(Bundle, PersistableBundle)}.
1136     *
1137     * @see #onCreate
1138     */
1139    public void onPostCreate(@Nullable Bundle savedInstanceState,
1140            @Nullable PersistableBundle persistentState) {
1141        onPostCreate(savedInstanceState);
1142    }
1143
1144    /**
1145     * Called after {@link #onCreate} &mdash; or after {@link #onRestart} when
1146     * the activity had been stopped, but is now again being displayed to the
1147     * user.  It will be followed by {@link #onResume}.
1148     *
1149     * <p><em>Derived classes must call through to the super class's
1150     * implementation of this method.  If they do not, an exception will be
1151     * thrown.</em></p>
1152     *
1153     * @see #onCreate
1154     * @see #onStop
1155     * @see #onResume
1156     */
1157    protected void onStart() {
1158        if (DEBUG_LIFECYCLE) Slog.v(TAG, "onStart " + this);
1159        mCalled = true;
1160
1161        if (!mLoadersStarted) {
1162            mLoadersStarted = true;
1163            if (mLoaderManager != null) {
1164                mLoaderManager.doStart();
1165            } else if (!mCheckedForLoaderManager) {
1166                mLoaderManager = getLoaderManager("(root)", mLoadersStarted, false);
1167            }
1168            mCheckedForLoaderManager = true;
1169        }
1170
1171        getApplication().dispatchActivityStarted(this);
1172    }
1173
1174    /**
1175     * Called after {@link #onStop} when the current activity is being
1176     * re-displayed to the user (the user has navigated back to it).  It will
1177     * be followed by {@link #onStart} and then {@link #onResume}.
1178     *
1179     * <p>For activities that are using raw {@link Cursor} objects (instead of
1180     * creating them through
1181     * {@link #managedQuery(android.net.Uri , String[], String, String[], String)},
1182     * this is usually the place
1183     * where the cursor should be requeried (because you had deactivated it in
1184     * {@link #onStop}.
1185     *
1186     * <p><em>Derived classes must call through to the super class's
1187     * implementation of this method.  If they do not, an exception will be
1188     * thrown.</em></p>
1189     *
1190     * @see #onStop
1191     * @see #onStart
1192     * @see #onResume
1193     */
1194    protected void onRestart() {
1195        mCalled = true;
1196    }
1197
1198    /**
1199     * Called after {@link #onRestoreInstanceState}, {@link #onRestart}, or
1200     * {@link #onPause}, for your activity to start interacting with the user.
1201     * This is a good place to begin animations, open exclusive-access devices
1202     * (such as the camera), etc.
1203     *
1204     * <p>Keep in mind that onResume is not the best indicator that your activity
1205     * is visible to the user; a system window such as the keyguard may be in
1206     * front.  Use {@link #onWindowFocusChanged} to know for certain that your
1207     * activity is visible to the user (for example, to resume a game).
1208     *
1209     * <p><em>Derived classes must call through to the super class's
1210     * implementation of this method.  If they do not, an exception will be
1211     * thrown.</em></p>
1212     *
1213     * @see #onRestoreInstanceState
1214     * @see #onRestart
1215     * @see #onPostResume
1216     * @see #onPause
1217     */
1218    protected void onResume() {
1219        if (DEBUG_LIFECYCLE) Slog.v(TAG, "onResume " + this);
1220        getApplication().dispatchActivityResumed(this);
1221        mActivityTransitionState.onResume();
1222        mCalled = true;
1223    }
1224
1225    /**
1226     * Called when activity resume is complete (after {@link #onResume} has
1227     * been called). Applications will generally not implement this method;
1228     * it is intended for system classes to do final setup after application
1229     * resume code has run.
1230     *
1231     * <p><em>Derived classes must call through to the super class's
1232     * implementation of this method.  If they do not, an exception will be
1233     * thrown.</em></p>
1234     *
1235     * @see #onResume
1236     */
1237    protected void onPostResume() {
1238        final Window win = getWindow();
1239        if (win != null) win.makeActive();
1240        if (mActionBar != null) mActionBar.setShowHideAnimationEnabled(true);
1241        mCalled = true;
1242    }
1243
1244    /**
1245     * @hide
1246     * Check whether this activity is running as part of a voice interaction with the user.
1247     * If true, it should perform its interaction with the user through the
1248     * {@link VoiceInteractor} returned by {@link #getVoiceInteractor}.
1249     */
1250    @SystemApi
1251    public boolean isVoiceInteraction() {
1252        return mVoiceInteractor != null;
1253    }
1254
1255    /**
1256     * @hide
1257     * Retrieve the active {@link VoiceInteractor} that the user is going through to
1258     * interact with this activity.
1259     */
1260    @SystemApi
1261    public VoiceInteractor getVoiceInteractor() {
1262        return mVoiceInteractor;
1263    }
1264
1265    /**
1266     * This is called for activities that set launchMode to "singleTop" in
1267     * their package, or if a client used the {@link Intent#FLAG_ACTIVITY_SINGLE_TOP}
1268     * flag when calling {@link #startActivity}.  In either case, when the
1269     * activity is re-launched while at the top of the activity stack instead
1270     * of a new instance of the activity being started, onNewIntent() will be
1271     * called on the existing instance with the Intent that was used to
1272     * re-launch it.
1273     *
1274     * <p>An activity will always be paused before receiving a new intent, so
1275     * you can count on {@link #onResume} being called after this method.
1276     *
1277     * <p>Note that {@link #getIntent} still returns the original Intent.  You
1278     * can use {@link #setIntent} to update it to this new Intent.
1279     *
1280     * @param intent The new intent that was started for the activity.
1281     *
1282     * @see #getIntent
1283     * @see #setIntent
1284     * @see #onResume
1285     */
1286    protected void onNewIntent(Intent intent) {
1287    }
1288
1289    /**
1290     * The hook for {@link ActivityThread} to save the state of this activity.
1291     *
1292     * Calls {@link #onSaveInstanceState(android.os.Bundle)}
1293     * and {@link #saveManagedDialogs(android.os.Bundle)}.
1294     *
1295     * @param outState The bundle to save the state to.
1296     */
1297    final void performSaveInstanceState(Bundle outState) {
1298        onSaveInstanceState(outState);
1299        saveManagedDialogs(outState);
1300        mActivityTransitionState.saveState(outState);
1301        if (DEBUG_LIFECYCLE) Slog.v(TAG, "onSaveInstanceState " + this + ": " + outState);
1302    }
1303
1304    /**
1305     * The hook for {@link ActivityThread} to save the state of this activity.
1306     *
1307     * Calls {@link #onSaveInstanceState(android.os.Bundle)}
1308     * and {@link #saveManagedDialogs(android.os.Bundle)}.
1309     *
1310     * @param outState The bundle to save the state to.
1311     * @param outPersistentState The bundle to save persistent state to.
1312     */
1313    final void performSaveInstanceState(Bundle outState, PersistableBundle outPersistentState) {
1314        onSaveInstanceState(outState, outPersistentState);
1315        saveManagedDialogs(outState);
1316        if (DEBUG_LIFECYCLE) Slog.v(TAG, "onSaveInstanceState " + this + ": " + outState +
1317                ", " + outPersistentState);
1318    }
1319
1320    /**
1321     * Called to retrieve per-instance state from an activity before being killed
1322     * so that the state can be restored in {@link #onCreate} or
1323     * {@link #onRestoreInstanceState} (the {@link Bundle} populated by this method
1324     * will be passed to both).
1325     *
1326     * <p>This method is called before an activity may be killed so that when it
1327     * comes back some time in the future it can restore its state.  For example,
1328     * if activity B is launched in front of activity A, and at some point activity
1329     * A is killed to reclaim resources, activity A will have a chance to save the
1330     * current state of its user interface via this method so that when the user
1331     * returns to activity A, the state of the user interface can be restored
1332     * via {@link #onCreate} or {@link #onRestoreInstanceState}.
1333     *
1334     * <p>Do not confuse this method with activity lifecycle callbacks such as
1335     * {@link #onPause}, which is always called when an activity is being placed
1336     * in the background or on its way to destruction, or {@link #onStop} which
1337     * is called before destruction.  One example of when {@link #onPause} and
1338     * {@link #onStop} is called and not this method is when a user navigates back
1339     * from activity B to activity A: there is no need to call {@link #onSaveInstanceState}
1340     * on B because that particular instance will never be restored, so the
1341     * system avoids calling it.  An example when {@link #onPause} is called and
1342     * not {@link #onSaveInstanceState} is when activity B is launched in front of activity A:
1343     * the system may avoid calling {@link #onSaveInstanceState} on activity A if it isn't
1344     * killed during the lifetime of B since the state of the user interface of
1345     * A will stay intact.
1346     *
1347     * <p>The default implementation takes care of most of the UI per-instance
1348     * state for you by calling {@link android.view.View#onSaveInstanceState()} on each
1349     * view in the hierarchy that has an id, and by saving the id of the currently
1350     * focused view (all of which is restored by the default implementation of
1351     * {@link #onRestoreInstanceState}).  If you override this method to save additional
1352     * information not captured by each individual view, you will likely want to
1353     * call through to the default implementation, otherwise be prepared to save
1354     * all of the state of each view yourself.
1355     *
1356     * <p>If called, this method will occur before {@link #onStop}.  There are
1357     * no guarantees about whether it will occur before or after {@link #onPause}.
1358     *
1359     * @param outState Bundle in which to place your saved state.
1360     *
1361     * @see #onCreate
1362     * @see #onRestoreInstanceState
1363     * @see #onPause
1364     */
1365    protected void onSaveInstanceState(Bundle outState) {
1366        outState.putBundle(WINDOW_HIERARCHY_TAG, mWindow.saveHierarchyState());
1367        Parcelable p = mFragments.saveAllState();
1368        if (p != null) {
1369            outState.putParcelable(FRAGMENTS_TAG, p);
1370        }
1371        getApplication().dispatchActivitySaveInstanceState(this, outState);
1372    }
1373
1374    /**
1375     * This is the same as {@link #onSaveInstanceState} but is called for activities
1376     * created with the attribute {@link android.R.attr#persistableMode} set to
1377     * <code>persistAcrossReboots</code>. The {@link android.os.PersistableBundle} passed
1378     * in will be saved and presented in {@link #onCreate(Bundle, PersistableBundle)}
1379     * the first time that this activity is restarted following the next device reboot.
1380     *
1381     * @param outState Bundle in which to place your saved state.
1382     * @param outPersistentState State which will be saved across reboots.
1383     *
1384     * @see #onSaveInstanceState(Bundle)
1385     * @see #onCreate
1386     * @see #onRestoreInstanceState(Bundle, PersistableBundle)
1387     * @see #onPause
1388     */
1389    public void onSaveInstanceState(Bundle outState, PersistableBundle outPersistentState) {
1390        onSaveInstanceState(outState);
1391    }
1392
1393    /**
1394     * Save the state of any managed dialogs.
1395     *
1396     * @param outState place to store the saved state.
1397     */
1398    private void saveManagedDialogs(Bundle outState) {
1399        if (mManagedDialogs == null) {
1400            return;
1401        }
1402
1403        final int numDialogs = mManagedDialogs.size();
1404        if (numDialogs == 0) {
1405            return;
1406        }
1407
1408        Bundle dialogState = new Bundle();
1409
1410        int[] ids = new int[mManagedDialogs.size()];
1411
1412        // save each dialog's bundle, gather the ids
1413        for (int i = 0; i < numDialogs; i++) {
1414            final int key = mManagedDialogs.keyAt(i);
1415            ids[i] = key;
1416            final ManagedDialog md = mManagedDialogs.valueAt(i);
1417            dialogState.putBundle(savedDialogKeyFor(key), md.mDialog.onSaveInstanceState());
1418            if (md.mArgs != null) {
1419                dialogState.putBundle(savedDialogArgsKeyFor(key), md.mArgs);
1420            }
1421        }
1422
1423        dialogState.putIntArray(SAVED_DIALOG_IDS_KEY, ids);
1424        outState.putBundle(SAVED_DIALOGS_TAG, dialogState);
1425    }
1426
1427
1428    /**
1429     * Called as part of the activity lifecycle when an activity is going into
1430     * the background, but has not (yet) been killed.  The counterpart to
1431     * {@link #onResume}.
1432     *
1433     * <p>When activity B is launched in front of activity A, this callback will
1434     * be invoked on A.  B will not be created until A's {@link #onPause} returns,
1435     * so be sure to not do anything lengthy here.
1436     *
1437     * <p>This callback is mostly used for saving any persistent state the
1438     * activity is editing, to present a "edit in place" model to the user and
1439     * making sure nothing is lost if there are not enough resources to start
1440     * the new activity without first killing this one.  This is also a good
1441     * place to do things like stop animations and other things that consume a
1442     * noticeable amount of CPU in order to make the switch to the next activity
1443     * as fast as possible, or to close resources that are exclusive access
1444     * such as the camera.
1445     *
1446     * <p>In situations where the system needs more memory it may kill paused
1447     * processes to reclaim resources.  Because of this, you should be sure
1448     * that all of your state is saved by the time you return from
1449     * this function.  In general {@link #onSaveInstanceState} is used to save
1450     * per-instance state in the activity and this method is used to store
1451     * global persistent data (in content providers, files, etc.)
1452     *
1453     * <p>After receiving this call you will usually receive a following call
1454     * to {@link #onStop} (after the next activity has been resumed and
1455     * displayed), however in some cases there will be a direct call back to
1456     * {@link #onResume} without going through the stopped state.
1457     *
1458     * <p><em>Derived classes must call through to the super class's
1459     * implementation of this method.  If they do not, an exception will be
1460     * thrown.</em></p>
1461     *
1462     * @see #onResume
1463     * @see #onSaveInstanceState
1464     * @see #onStop
1465     */
1466    protected void onPause() {
1467        if (DEBUG_LIFECYCLE) Slog.v(TAG, "onPause " + this);
1468        getApplication().dispatchActivityPaused(this);
1469        mCalled = true;
1470    }
1471
1472    /**
1473     * Called as part of the activity lifecycle when an activity is about to go
1474     * into the background as the result of user choice.  For example, when the
1475     * user presses the Home key, {@link #onUserLeaveHint} will be called, but
1476     * when an incoming phone call causes the in-call Activity to be automatically
1477     * brought to the foreground, {@link #onUserLeaveHint} will not be called on
1478     * the activity being interrupted.  In cases when it is invoked, this method
1479     * is called right before the activity's {@link #onPause} callback.
1480     *
1481     * <p>This callback and {@link #onUserInteraction} are intended to help
1482     * activities manage status bar notifications intelligently; specifically,
1483     * for helping activities determine the proper time to cancel a notfication.
1484     *
1485     * @see #onUserInteraction()
1486     */
1487    protected void onUserLeaveHint() {
1488    }
1489
1490    /**
1491     * Generate a new thumbnail for this activity.  This method is called before
1492     * pausing the activity, and should draw into <var>outBitmap</var> the
1493     * imagery for the desired thumbnail in the dimensions of that bitmap.  It
1494     * can use the given <var>canvas</var>, which is configured to draw into the
1495     * bitmap, for rendering if desired.
1496     *
1497     * <p>The default implementation returns fails and does not draw a thumbnail;
1498     * this will result in the platform creating its own thumbnail if needed.
1499     *
1500     * @param outBitmap The bitmap to contain the thumbnail.
1501     * @param canvas Can be used to render into the bitmap.
1502     *
1503     * @return Return true if you have drawn into the bitmap; otherwise after
1504     *         you return it will be filled with a default thumbnail.
1505     *
1506     * @see #onCreateDescription
1507     * @see #onSaveInstanceState
1508     * @see #onPause
1509     */
1510    public boolean onCreateThumbnail(Bitmap outBitmap, Canvas canvas) {
1511        return false;
1512    }
1513
1514    /**
1515     * Generate a new description for this activity.  This method is called
1516     * before pausing the activity and can, if desired, return some textual
1517     * description of its current state to be displayed to the user.
1518     *
1519     * <p>The default implementation returns null, which will cause you to
1520     * inherit the description from the previous activity.  If all activities
1521     * return null, generally the label of the top activity will be used as the
1522     * description.
1523     *
1524     * @return A description of what the user is doing.  It should be short and
1525     *         sweet (only a few words).
1526     *
1527     * @see #onCreateThumbnail
1528     * @see #onSaveInstanceState
1529     * @see #onPause
1530     */
1531    @Nullable
1532    public CharSequence onCreateDescription() {
1533        return null;
1534    }
1535
1536    /**
1537     * This is called when the user is requesting an assist, to build a full
1538     * {@link Intent#ACTION_ASSIST} Intent with all of the context of the current
1539     * application.  You can override this method to place into the bundle anything
1540     * you would like to appear in the {@link Intent#EXTRA_ASSIST_CONTEXT} part
1541     * of the assist Intent.  The default implementation does nothing.
1542     *
1543     * <p>This function will be called after any global assist callbacks that had
1544     * been registered with {@link Application#registerOnProvideAssistDataListener
1545     * Application.registerOnProvideAssistDataListener}.
1546     */
1547    public void onProvideAssistData(Bundle data) {
1548    }
1549
1550    /**
1551     * Called when you are no longer visible to the user.  You will next
1552     * receive either {@link #onRestart}, {@link #onDestroy}, or nothing,
1553     * depending on later user activity.
1554     *
1555     * <p>Note that this method may never be called, in low memory situations
1556     * where the system does not have enough memory to keep your activity's
1557     * process running after its {@link #onPause} method is called.
1558     *
1559     * <p><em>Derived classes must call through to the super class's
1560     * implementation of this method.  If they do not, an exception will be
1561     * thrown.</em></p>
1562     *
1563     * @see #onRestart
1564     * @see #onResume
1565     * @see #onSaveInstanceState
1566     * @see #onDestroy
1567     */
1568    protected void onStop() {
1569        if (DEBUG_LIFECYCLE) Slog.v(TAG, "onStop " + this);
1570        if (mActionBar != null) mActionBar.setShowHideAnimationEnabled(false);
1571        mActivityTransitionState.onStop();
1572        getApplication().dispatchActivityStopped(this);
1573        mTranslucentCallback = null;
1574        mCalled = true;
1575    }
1576
1577    /**
1578     * Perform any final cleanup before an activity is destroyed.  This can
1579     * happen either because the activity is finishing (someone called
1580     * {@link #finish} on it, or because the system is temporarily destroying
1581     * this instance of the activity to save space.  You can distinguish
1582     * between these two scenarios with the {@link #isFinishing} method.
1583     *
1584     * <p><em>Note: do not count on this method being called as a place for
1585     * saving data! For example, if an activity is editing data in a content
1586     * provider, those edits should be committed in either {@link #onPause} or
1587     * {@link #onSaveInstanceState}, not here.</em> This method is usually implemented to
1588     * free resources like threads that are associated with an activity, so
1589     * that a destroyed activity does not leave such things around while the
1590     * rest of its application is still running.  There are situations where
1591     * the system will simply kill the activity's hosting process without
1592     * calling this method (or any others) in it, so it should not be used to
1593     * do things that are intended to remain around after the process goes
1594     * away.
1595     *
1596     * <p><em>Derived classes must call through to the super class's
1597     * implementation of this method.  If they do not, an exception will be
1598     * thrown.</em></p>
1599     *
1600     * @see #onPause
1601     * @see #onStop
1602     * @see #finish
1603     * @see #isFinishing
1604     */
1605    protected void onDestroy() {
1606        if (DEBUG_LIFECYCLE) Slog.v(TAG, "onDestroy " + this);
1607        mCalled = true;
1608
1609        // dismiss any dialogs we are managing.
1610        if (mManagedDialogs != null) {
1611            final int numDialogs = mManagedDialogs.size();
1612            for (int i = 0; i < numDialogs; i++) {
1613                final ManagedDialog md = mManagedDialogs.valueAt(i);
1614                if (md.mDialog.isShowing()) {
1615                    md.mDialog.dismiss();
1616                }
1617            }
1618            mManagedDialogs = null;
1619        }
1620
1621        // close any cursors we are managing.
1622        synchronized (mManagedCursors) {
1623            int numCursors = mManagedCursors.size();
1624            for (int i = 0; i < numCursors; i++) {
1625                ManagedCursor c = mManagedCursors.get(i);
1626                if (c != null) {
1627                    c.mCursor.close();
1628                }
1629            }
1630            mManagedCursors.clear();
1631        }
1632
1633        // Close any open search dialog
1634        if (mSearchManager != null) {
1635            mSearchManager.stopSearch();
1636        }
1637
1638        getApplication().dispatchActivityDestroyed(this);
1639    }
1640
1641    /**
1642     * Report to the system that your app is now fully drawn, purely for diagnostic
1643     * purposes (calling it does not impact the visible behavior of the activity).
1644     * This is only used to help instrument application launch times, so that the
1645     * app can report when it is fully in a usable state; without this, the only thing
1646     * the system itself can determine is the point at which the activity's window
1647     * is <em>first</em> drawn and displayed.  To participate in app launch time
1648     * measurement, you should always call this method after first launch (when
1649     * {@link #onCreate(android.os.Bundle)} is called), at the point where you have
1650     * entirely drawn your UI and populated with all of the significant data.  You
1651     * can safely call this method any time after first launch as well, in which case
1652     * it will simply be ignored.
1653     */
1654    public void reportFullyDrawn() {
1655        if (mDoReportFullyDrawn) {
1656            mDoReportFullyDrawn = false;
1657            try {
1658                ActivityManagerNative.getDefault().reportActivityFullyDrawn(mToken);
1659            } catch (RemoteException e) {
1660            }
1661        }
1662    }
1663
1664    /**
1665     * Called by the system when the device configuration changes while your
1666     * activity is running.  Note that this will <em>only</em> be called if
1667     * you have selected configurations you would like to handle with the
1668     * {@link android.R.attr#configChanges} attribute in your manifest.  If
1669     * any configuration change occurs that is not selected to be reported
1670     * by that attribute, then instead of reporting it the system will stop
1671     * and restart the activity (to have it launched with the new
1672     * configuration).
1673     *
1674     * <p>At the time that this function has been called, your Resources
1675     * object will have been updated to return resource values matching the
1676     * new configuration.
1677     *
1678     * @param newConfig The new device configuration.
1679     */
1680    public void onConfigurationChanged(Configuration newConfig) {
1681        if (DEBUG_LIFECYCLE) Slog.v(TAG, "onConfigurationChanged " + this + ": " + newConfig);
1682        mCalled = true;
1683
1684        mFragments.dispatchConfigurationChanged(newConfig);
1685
1686        if (mWindow != null) {
1687            // Pass the configuration changed event to the window
1688            mWindow.onConfigurationChanged(newConfig);
1689        }
1690
1691        if (mActionBar != null) {
1692            // Do this last; the action bar will need to access
1693            // view changes from above.
1694            mActionBar.onConfigurationChanged(newConfig);
1695        }
1696    }
1697
1698    /**
1699     * If this activity is being destroyed because it can not handle a
1700     * configuration parameter being changed (and thus its
1701     * {@link #onConfigurationChanged(Configuration)} method is
1702     * <em>not</em> being called), then you can use this method to discover
1703     * the set of changes that have occurred while in the process of being
1704     * destroyed.  Note that there is no guarantee that these will be
1705     * accurate (other changes could have happened at any time), so you should
1706     * only use this as an optimization hint.
1707     *
1708     * @return Returns a bit field of the configuration parameters that are
1709     * changing, as defined by the {@link android.content.res.Configuration}
1710     * class.
1711     */
1712    public int getChangingConfigurations() {
1713        return mConfigChangeFlags;
1714    }
1715
1716    /**
1717     * Retrieve the non-configuration instance data that was previously
1718     * returned by {@link #onRetainNonConfigurationInstance()}.  This will
1719     * be available from the initial {@link #onCreate} and
1720     * {@link #onStart} calls to the new instance, allowing you to extract
1721     * any useful dynamic state from the previous instance.
1722     *
1723     * <p>Note that the data you retrieve here should <em>only</em> be used
1724     * as an optimization for handling configuration changes.  You should always
1725     * be able to handle getting a null pointer back, and an activity must
1726     * still be able to restore itself to its previous state (through the
1727     * normal {@link #onSaveInstanceState(Bundle)} mechanism) even if this
1728     * function returns null.
1729     *
1730     * @return Returns the object previously returned by
1731     * {@link #onRetainNonConfigurationInstance()}.
1732     *
1733     * @deprecated Use the new {@link Fragment} API
1734     * {@link Fragment#setRetainInstance(boolean)} instead; this is also
1735     * available on older platforms through the Android compatibility package.
1736     */
1737    @Nullable
1738    @Deprecated
1739    public Object getLastNonConfigurationInstance() {
1740        return mLastNonConfigurationInstances != null
1741                ? mLastNonConfigurationInstances.activity : null;
1742    }
1743
1744    /**
1745     * Called by the system, as part of destroying an
1746     * activity due to a configuration change, when it is known that a new
1747     * instance will immediately be created for the new configuration.  You
1748     * can return any object you like here, including the activity instance
1749     * itself, which can later be retrieved by calling
1750     * {@link #getLastNonConfigurationInstance()} in the new activity
1751     * instance.
1752     *
1753     * <em>If you are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB}
1754     * or later, consider instead using a {@link Fragment} with
1755     * {@link Fragment#setRetainInstance(boolean)
1756     * Fragment.setRetainInstance(boolean}.</em>
1757     *
1758     * <p>This function is called purely as an optimization, and you must
1759     * not rely on it being called.  When it is called, a number of guarantees
1760     * will be made to help optimize configuration switching:
1761     * <ul>
1762     * <li> The function will be called between {@link #onStop} and
1763     * {@link #onDestroy}.
1764     * <li> A new instance of the activity will <em>always</em> be immediately
1765     * created after this one's {@link #onDestroy()} is called.  In particular,
1766     * <em>no</em> messages will be dispatched during this time (when the returned
1767     * object does not have an activity to be associated with).
1768     * <li> The object you return here will <em>always</em> be available from
1769     * the {@link #getLastNonConfigurationInstance()} method of the following
1770     * activity instance as described there.
1771     * </ul>
1772     *
1773     * <p>These guarantees are designed so that an activity can use this API
1774     * to propagate extensive state from the old to new activity instance, from
1775     * loaded bitmaps, to network connections, to evenly actively running
1776     * threads.  Note that you should <em>not</em> propagate any data that
1777     * may change based on the configuration, including any data loaded from
1778     * resources such as strings, layouts, or drawables.
1779     *
1780     * <p>The guarantee of no message handling during the switch to the next
1781     * activity simplifies use with active objects.  For example if your retained
1782     * state is an {@link android.os.AsyncTask} you are guaranteed that its
1783     * call back functions (like {@link android.os.AsyncTask#onPostExecute}) will
1784     * not be called from the call here until you execute the next instance's
1785     * {@link #onCreate(Bundle)}.  (Note however that there is of course no such
1786     * guarantee for {@link android.os.AsyncTask#doInBackground} since that is
1787     * running in a separate thread.)
1788     *
1789     * @return Return any Object holding the desired state to propagate to the
1790     * next activity instance.
1791     *
1792     * @deprecated Use the new {@link Fragment} API
1793     * {@link Fragment#setRetainInstance(boolean)} instead; this is also
1794     * available on older platforms through the Android compatibility package.
1795     */
1796    public Object onRetainNonConfigurationInstance() {
1797        return null;
1798    }
1799
1800    /**
1801     * Retrieve the non-configuration instance data that was previously
1802     * returned by {@link #onRetainNonConfigurationChildInstances()}.  This will
1803     * be available from the initial {@link #onCreate} and
1804     * {@link #onStart} calls to the new instance, allowing you to extract
1805     * any useful dynamic state from the previous instance.
1806     *
1807     * <p>Note that the data you retrieve here should <em>only</em> be used
1808     * as an optimization for handling configuration changes.  You should always
1809     * be able to handle getting a null pointer back, and an activity must
1810     * still be able to restore itself to its previous state (through the
1811     * normal {@link #onSaveInstanceState(Bundle)} mechanism) even if this
1812     * function returns null.
1813     *
1814     * @return Returns the object previously returned by
1815     * {@link #onRetainNonConfigurationChildInstances()}
1816     */
1817    @Nullable
1818    HashMap<String, Object> getLastNonConfigurationChildInstances() {
1819        return mLastNonConfigurationInstances != null
1820                ? mLastNonConfigurationInstances.children : null;
1821    }
1822
1823    /**
1824     * This method is similar to {@link #onRetainNonConfigurationInstance()} except that
1825     * it should return either a mapping from  child activity id strings to arbitrary objects,
1826     * or null.  This method is intended to be used by Activity framework subclasses that control a
1827     * set of child activities, such as ActivityGroup.  The same guarantees and restrictions apply
1828     * as for {@link #onRetainNonConfigurationInstance()}.  The default implementation returns null.
1829     */
1830    @Nullable
1831    HashMap<String,Object> onRetainNonConfigurationChildInstances() {
1832        return null;
1833    }
1834
1835    NonConfigurationInstances retainNonConfigurationInstances() {
1836        Object activity = onRetainNonConfigurationInstance();
1837        HashMap<String, Object> children = onRetainNonConfigurationChildInstances();
1838        ArrayList<Fragment> fragments = mFragments.retainNonConfig();
1839        boolean retainLoaders = false;
1840        if (mAllLoaderManagers != null) {
1841            // prune out any loader managers that were already stopped and so
1842            // have nothing useful to retain.
1843            final int N = mAllLoaderManagers.size();
1844            LoaderManagerImpl loaders[] = new LoaderManagerImpl[N];
1845            for (int i=N-1; i>=0; i--) {
1846                loaders[i] = mAllLoaderManagers.valueAt(i);
1847            }
1848            for (int i=0; i<N; i++) {
1849                LoaderManagerImpl lm = loaders[i];
1850                if (lm.mRetaining) {
1851                    retainLoaders = true;
1852                } else {
1853                    lm.doDestroy();
1854                    mAllLoaderManagers.remove(lm.mWho);
1855                }
1856            }
1857        }
1858        if (activity == null && children == null && fragments == null && !retainLoaders
1859                && mVoiceInteractor == null) {
1860            return null;
1861        }
1862
1863        NonConfigurationInstances nci = new NonConfigurationInstances();
1864        nci.activity = activity;
1865        nci.children = children;
1866        nci.fragments = fragments;
1867        nci.loaders = mAllLoaderManagers;
1868        nci.voiceInteractor = mVoiceInteractor;
1869        return nci;
1870    }
1871
1872    public void onLowMemory() {
1873        if (DEBUG_LIFECYCLE) Slog.v(TAG, "onLowMemory " + this);
1874        mCalled = true;
1875        mFragments.dispatchLowMemory();
1876    }
1877
1878    public void onTrimMemory(int level) {
1879        if (DEBUG_LIFECYCLE) Slog.v(TAG, "onTrimMemory " + this + ": " + level);
1880        mCalled = true;
1881        mFragments.dispatchTrimMemory(level);
1882    }
1883
1884    /**
1885     * Return the FragmentManager for interacting with fragments associated
1886     * with this activity.
1887     */
1888    public FragmentManager getFragmentManager() {
1889        return mFragments;
1890    }
1891
1892    void invalidateFragment(String who) {
1893        //Log.v(TAG, "invalidateFragmentIndex: index=" + index);
1894        if (mAllLoaderManagers != null) {
1895            LoaderManagerImpl lm = mAllLoaderManagers.get(who);
1896            if (lm != null && !lm.mRetaining) {
1897                lm.doDestroy();
1898                mAllLoaderManagers.remove(who);
1899            }
1900        }
1901    }
1902
1903    /**
1904     * Called when a Fragment is being attached to this activity, immediately
1905     * after the call to its {@link Fragment#onAttach Fragment.onAttach()}
1906     * method and before {@link Fragment#onCreate Fragment.onCreate()}.
1907     */
1908    public void onAttachFragment(Fragment fragment) {
1909    }
1910
1911    /**
1912     * Wrapper around
1913     * {@link ContentResolver#query(android.net.Uri , String[], String, String[], String)}
1914     * that gives the resulting {@link Cursor} to call
1915     * {@link #startManagingCursor} so that the activity will manage its
1916     * lifecycle for you.
1917     *
1918     * <em>If you are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB}
1919     * or later, consider instead using {@link LoaderManager} instead, available
1920     * via {@link #getLoaderManager()}.</em>
1921     *
1922     * <p><strong>Warning:</strong> Do not call {@link Cursor#close()} on a cursor obtained using
1923     * this method, because the activity will do that for you at the appropriate time. However, if
1924     * you call {@link #stopManagingCursor} on a cursor from a managed query, the system <em>will
1925     * not</em> automatically close the cursor and, in that case, you must call
1926     * {@link Cursor#close()}.</p>
1927     *
1928     * @param uri The URI of the content provider to query.
1929     * @param projection List of columns to return.
1930     * @param selection SQL WHERE clause.
1931     * @param sortOrder SQL ORDER BY clause.
1932     *
1933     * @return The Cursor that was returned by query().
1934     *
1935     * @see ContentResolver#query(android.net.Uri , String[], String, String[], String)
1936     * @see #startManagingCursor
1937     * @hide
1938     *
1939     * @deprecated Use {@link CursorLoader} instead.
1940     */
1941    @Deprecated
1942    public final Cursor managedQuery(Uri uri, String[] projection, String selection,
1943            String sortOrder) {
1944        Cursor c = getContentResolver().query(uri, projection, selection, null, sortOrder);
1945        if (c != null) {
1946            startManagingCursor(c);
1947        }
1948        return c;
1949    }
1950
1951    /**
1952     * Wrapper around
1953     * {@link ContentResolver#query(android.net.Uri , String[], String, String[], String)}
1954     * that gives the resulting {@link Cursor} to call
1955     * {@link #startManagingCursor} so that the activity will manage its
1956     * lifecycle for you.
1957     *
1958     * <em>If you are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB}
1959     * or later, consider instead using {@link LoaderManager} instead, available
1960     * via {@link #getLoaderManager()}.</em>
1961     *
1962     * <p><strong>Warning:</strong> Do not call {@link Cursor#close()} on a cursor obtained using
1963     * this method, because the activity will do that for you at the appropriate time. However, if
1964     * you call {@link #stopManagingCursor} on a cursor from a managed query, the system <em>will
1965     * not</em> automatically close the cursor and, in that case, you must call
1966     * {@link Cursor#close()}.</p>
1967     *
1968     * @param uri The URI of the content provider to query.
1969     * @param projection List of columns to return.
1970     * @param selection SQL WHERE clause.
1971     * @param selectionArgs The arguments to selection, if any ?s are pesent
1972     * @param sortOrder SQL ORDER BY clause.
1973     *
1974     * @return The Cursor that was returned by query().
1975     *
1976     * @see ContentResolver#query(android.net.Uri , String[], String, String[], String)
1977     * @see #startManagingCursor
1978     *
1979     * @deprecated Use {@link CursorLoader} instead.
1980     */
1981    @Deprecated
1982    public final Cursor managedQuery(Uri uri, String[] projection, String selection,
1983            String[] selectionArgs, String sortOrder) {
1984        Cursor c = getContentResolver().query(uri, projection, selection, selectionArgs, sortOrder);
1985        if (c != null) {
1986            startManagingCursor(c);
1987        }
1988        return c;
1989    }
1990
1991    /**
1992     * This method allows the activity to take care of managing the given
1993     * {@link Cursor}'s lifecycle for you based on the activity's lifecycle.
1994     * That is, when the activity is stopped it will automatically call
1995     * {@link Cursor#deactivate} on the given Cursor, and when it is later restarted
1996     * it will call {@link Cursor#requery} for you.  When the activity is
1997     * destroyed, all managed Cursors will be closed automatically.
1998     *
1999     * <em>If you are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB}
2000     * or later, consider instead using {@link LoaderManager} instead, available
2001     * via {@link #getLoaderManager()}.</em>
2002     *
2003     * <p><strong>Warning:</strong> Do not call {@link Cursor#close()} on cursor obtained from
2004     * {@link #managedQuery}, because the activity will do that for you at the appropriate time.
2005     * However, if you call {@link #stopManagingCursor} on a cursor from a managed query, the system
2006     * <em>will not</em> automatically close the cursor and, in that case, you must call
2007     * {@link Cursor#close()}.</p>
2008     *
2009     * @param c The Cursor to be managed.
2010     *
2011     * @see #managedQuery(android.net.Uri , String[], String, String[], String)
2012     * @see #stopManagingCursor
2013     *
2014     * @deprecated Use the new {@link android.content.CursorLoader} class with
2015     * {@link LoaderManager} instead; this is also
2016     * available on older platforms through the Android compatibility package.
2017     */
2018    @Deprecated
2019    public void startManagingCursor(Cursor c) {
2020        synchronized (mManagedCursors) {
2021            mManagedCursors.add(new ManagedCursor(c));
2022        }
2023    }
2024
2025    /**
2026     * Given a Cursor that was previously given to
2027     * {@link #startManagingCursor}, stop the activity's management of that
2028     * cursor.
2029     *
2030     * <p><strong>Warning:</strong> After calling this method on a cursor from a managed query,
2031     * the system <em>will not</em> automatically close the cursor and you must call
2032     * {@link Cursor#close()}.</p>
2033     *
2034     * @param c The Cursor that was being managed.
2035     *
2036     * @see #startManagingCursor
2037     *
2038     * @deprecated Use the new {@link android.content.CursorLoader} class with
2039     * {@link LoaderManager} instead; this is also
2040     * available on older platforms through the Android compatibility package.
2041     */
2042    @Deprecated
2043    public void stopManagingCursor(Cursor c) {
2044        synchronized (mManagedCursors) {
2045            final int N = mManagedCursors.size();
2046            for (int i=0; i<N; i++) {
2047                ManagedCursor mc = mManagedCursors.get(i);
2048                if (mc.mCursor == c) {
2049                    mManagedCursors.remove(i);
2050                    break;
2051                }
2052            }
2053        }
2054    }
2055
2056    /**
2057     * @deprecated As of {@link android.os.Build.VERSION_CODES#GINGERBREAD}
2058     * this is a no-op.
2059     * @hide
2060     */
2061    @Deprecated
2062    public void setPersistent(boolean isPersistent) {
2063    }
2064
2065    /**
2066     * Finds a view that was identified by the id attribute from the XML that
2067     * was processed in {@link #onCreate}.
2068     *
2069     * @return The view if found or null otherwise.
2070     */
2071    public View findViewById(int id) {
2072        return getWindow().findViewById(id);
2073    }
2074
2075    /**
2076     * Retrieve a reference to this activity's ActionBar.
2077     *
2078     * @return The Activity's ActionBar, or null if it does not have one.
2079     */
2080    @Nullable
2081    public ActionBar getActionBar() {
2082        initWindowDecorActionBar();
2083        return mActionBar;
2084    }
2085
2086    /**
2087     * Set a {@link android.widget.Toolbar Toolbar} to act as the {@link ActionBar} for this
2088     * Activity window.
2089     *
2090     * <p>When set to a non-null value the {@link #getActionBar()} method will return
2091     * an {@link ActionBar} object that can be used to control the given toolbar as if it were
2092     * a traditional window decor action bar. The toolbar's menu will be populated with the
2093     * Activity's options menu and the navigation button will be wired through the standard
2094     * {@link android.R.id#home home} menu select action.</p>
2095     *
2096     * <p>In order to use a Toolbar within the Activity's window content the application
2097     * must not request the window feature {@link Window#FEATURE_ACTION_BAR FEATURE_ACTION_BAR}.</p>
2098     *
2099     * @param toolbar Toolbar to set as the Activity's action bar
2100     */
2101    public void setActionBar(@Nullable Toolbar toolbar) {
2102        if (getActionBar() instanceof WindowDecorActionBar) {
2103            throw new IllegalStateException("This Activity already has an action bar supplied " +
2104                    "by the window decor. Do not request Window.FEATURE_ACTION_BAR and set " +
2105                    "android:windowActionBar to false in your theme to use a Toolbar instead.");
2106        }
2107        ToolbarActionBar tbab = new ToolbarActionBar(toolbar, getTitle(), this);
2108        mActionBar = tbab;
2109        mWindow.setCallback(tbab.getWrappedWindowCallback());
2110        mActionBar.invalidateOptionsMenu();
2111    }
2112
2113    /**
2114     * Creates a new ActionBar, locates the inflated ActionBarView,
2115     * initializes the ActionBar with the view, and sets mActionBar.
2116     */
2117    private void initWindowDecorActionBar() {
2118        Window window = getWindow();
2119
2120        // Initializing the window decor can change window feature flags.
2121        // Make sure that we have the correct set before performing the test below.
2122        window.getDecorView();
2123
2124        if (isChild() || !window.hasFeature(Window.FEATURE_ACTION_BAR) || mActionBar != null) {
2125            return;
2126        }
2127
2128        mActionBar = new WindowDecorActionBar(this);
2129        mActionBar.setDefaultDisplayHomeAsUpEnabled(mEnableDefaultActionBarUp);
2130
2131        mWindow.setDefaultIcon(mActivityInfo.getIconResource());
2132        mWindow.setDefaultLogo(mActivityInfo.getLogoResource());
2133    }
2134
2135    /**
2136     * Set the activity content from a layout resource.  The resource will be
2137     * inflated, adding all top-level views to the activity.
2138     *
2139     * @param layoutResID Resource ID to be inflated.
2140     *
2141     * @see #setContentView(android.view.View)
2142     * @see #setContentView(android.view.View, android.view.ViewGroup.LayoutParams)
2143     */
2144    public void setContentView(int layoutResID) {
2145        getWindow().setContentView(layoutResID);
2146        initWindowDecorActionBar();
2147    }
2148
2149    /**
2150     * Set the activity content to an explicit view.  This view is placed
2151     * directly into the activity's view hierarchy.  It can itself be a complex
2152     * view hierarchy.  When calling this method, the layout parameters of the
2153     * specified view are ignored.  Both the width and the height of the view are
2154     * set by default to {@link ViewGroup.LayoutParams#MATCH_PARENT}. To use
2155     * your own layout parameters, invoke
2156     * {@link #setContentView(android.view.View, android.view.ViewGroup.LayoutParams)}
2157     * instead.
2158     *
2159     * @param view The desired content to display.
2160     *
2161     * @see #setContentView(int)
2162     * @see #setContentView(android.view.View, android.view.ViewGroup.LayoutParams)
2163     */
2164    public void setContentView(View view) {
2165        getWindow().setContentView(view);
2166        initWindowDecorActionBar();
2167    }
2168
2169    /**
2170     * Set the activity content to an explicit view.  This view is placed
2171     * directly into the activity's view hierarchy.  It can itself be a complex
2172     * view hierarchy.
2173     *
2174     * @param view The desired content to display.
2175     * @param params Layout parameters for the view.
2176     *
2177     * @see #setContentView(android.view.View)
2178     * @see #setContentView(int)
2179     */
2180    public void setContentView(View view, ViewGroup.LayoutParams params) {
2181        getWindow().setContentView(view, params);
2182        initWindowDecorActionBar();
2183    }
2184
2185    /**
2186     * Add an additional content view to the activity.  Added after any existing
2187     * ones in the activity -- existing views are NOT removed.
2188     *
2189     * @param view The desired content to display.
2190     * @param params Layout parameters for the view.
2191     */
2192    public void addContentView(View view, ViewGroup.LayoutParams params) {
2193        getWindow().addContentView(view, params);
2194        initWindowDecorActionBar();
2195    }
2196
2197    /**
2198     * Retrieve the {@link TransitionManager} responsible for default transitions in this window.
2199     * Requires {@link Window#FEATURE_CONTENT_TRANSITIONS}.
2200     *
2201     * <p>This method will return non-null after content has been initialized (e.g. by using
2202     * {@link #setContentView}) if {@link Window#FEATURE_CONTENT_TRANSITIONS} has been granted.</p>
2203     *
2204     * @return This window's content TransitionManager or null if none is set.
2205     */
2206    public TransitionManager getContentTransitionManager() {
2207        return getWindow().getTransitionManager();
2208    }
2209
2210    /**
2211     * Set the {@link TransitionManager} to use for default transitions in this window.
2212     * Requires {@link Window#FEATURE_CONTENT_TRANSITIONS}.
2213     *
2214     * @param tm The TransitionManager to use for scene changes.
2215     */
2216    public void setContentTransitionManager(TransitionManager tm) {
2217        getWindow().setTransitionManager(tm);
2218    }
2219
2220    /**
2221     * Retrieve the {@link Scene} representing this window's current content.
2222     * Requires {@link Window#FEATURE_CONTENT_TRANSITIONS}.
2223     *
2224     * <p>This method will return null if the current content is not represented by a Scene.</p>
2225     *
2226     * @return Current Scene being shown or null
2227     */
2228    public Scene getContentScene() {
2229        return getWindow().getContentScene();
2230    }
2231
2232    /**
2233     * Sets whether this activity is finished when touched outside its window's
2234     * bounds.
2235     */
2236    public void setFinishOnTouchOutside(boolean finish) {
2237        mWindow.setCloseOnTouchOutside(finish);
2238    }
2239
2240    /** @hide */
2241    @IntDef({
2242            DEFAULT_KEYS_DISABLE,
2243            DEFAULT_KEYS_DIALER,
2244            DEFAULT_KEYS_SHORTCUT,
2245            DEFAULT_KEYS_SEARCH_LOCAL,
2246            DEFAULT_KEYS_SEARCH_GLOBAL})
2247    @Retention(RetentionPolicy.SOURCE)
2248    @interface DefaultKeyMode {}
2249
2250    /**
2251     * Use with {@link #setDefaultKeyMode} to turn off default handling of
2252     * keys.
2253     *
2254     * @see #setDefaultKeyMode
2255     */
2256    static public final int DEFAULT_KEYS_DISABLE = 0;
2257    /**
2258     * Use with {@link #setDefaultKeyMode} to launch the dialer during default
2259     * key handling.
2260     *
2261     * @see #setDefaultKeyMode
2262     */
2263    static public final int DEFAULT_KEYS_DIALER = 1;
2264    /**
2265     * Use with {@link #setDefaultKeyMode} to execute a menu shortcut in
2266     * default key handling.
2267     *
2268     * <p>That is, the user does not need to hold down the menu key to execute menu shortcuts.
2269     *
2270     * @see #setDefaultKeyMode
2271     */
2272    static public final int DEFAULT_KEYS_SHORTCUT = 2;
2273    /**
2274     * Use with {@link #setDefaultKeyMode} to specify that unhandled keystrokes
2275     * will start an application-defined search.  (If the application or activity does not
2276     * actually define a search, the the keys will be ignored.)
2277     *
2278     * <p>See {@link android.app.SearchManager android.app.SearchManager} for more details.
2279     *
2280     * @see #setDefaultKeyMode
2281     */
2282    static public final int DEFAULT_KEYS_SEARCH_LOCAL = 3;
2283
2284    /**
2285     * Use with {@link #setDefaultKeyMode} to specify that unhandled keystrokes
2286     * will start a global search (typically web search, but some platforms may define alternate
2287     * methods for global search)
2288     *
2289     * <p>See {@link android.app.SearchManager android.app.SearchManager} for more details.
2290     *
2291     * @see #setDefaultKeyMode
2292     */
2293    static public final int DEFAULT_KEYS_SEARCH_GLOBAL = 4;
2294
2295    /**
2296     * Select the default key handling for this activity.  This controls what
2297     * will happen to key events that are not otherwise handled.  The default
2298     * mode ({@link #DEFAULT_KEYS_DISABLE}) will simply drop them on the
2299     * floor. Other modes allow you to launch the dialer
2300     * ({@link #DEFAULT_KEYS_DIALER}), execute a shortcut in your options
2301     * menu without requiring the menu key be held down
2302     * ({@link #DEFAULT_KEYS_SHORTCUT}), or launch a search ({@link #DEFAULT_KEYS_SEARCH_LOCAL}
2303     * and {@link #DEFAULT_KEYS_SEARCH_GLOBAL}).
2304     *
2305     * <p>Note that the mode selected here does not impact the default
2306     * handling of system keys, such as the "back" and "menu" keys, and your
2307     * activity and its views always get a first chance to receive and handle
2308     * all application keys.
2309     *
2310     * @param mode The desired default key mode constant.
2311     *
2312     * @see #DEFAULT_KEYS_DISABLE
2313     * @see #DEFAULT_KEYS_DIALER
2314     * @see #DEFAULT_KEYS_SHORTCUT
2315     * @see #DEFAULT_KEYS_SEARCH_LOCAL
2316     * @see #DEFAULT_KEYS_SEARCH_GLOBAL
2317     * @see #onKeyDown
2318     */
2319    public final void setDefaultKeyMode(@DefaultKeyMode int mode) {
2320        mDefaultKeyMode = mode;
2321
2322        // Some modes use a SpannableStringBuilder to track & dispatch input events
2323        // This list must remain in sync with the switch in onKeyDown()
2324        switch (mode) {
2325        case DEFAULT_KEYS_DISABLE:
2326        case DEFAULT_KEYS_SHORTCUT:
2327            mDefaultKeySsb = null;      // not used in these modes
2328            break;
2329        case DEFAULT_KEYS_DIALER:
2330        case DEFAULT_KEYS_SEARCH_LOCAL:
2331        case DEFAULT_KEYS_SEARCH_GLOBAL:
2332            mDefaultKeySsb = new SpannableStringBuilder();
2333            Selection.setSelection(mDefaultKeySsb,0);
2334            break;
2335        default:
2336            throw new IllegalArgumentException();
2337        }
2338    }
2339
2340    /**
2341     * Called when a key was pressed down and not handled by any of the views
2342     * inside of the activity. So, for example, key presses while the cursor
2343     * is inside a TextView will not trigger the event (unless it is a navigation
2344     * to another object) because TextView handles its own key presses.
2345     *
2346     * <p>If the focused view didn't want this event, this method is called.
2347     *
2348     * <p>The default implementation takes care of {@link KeyEvent#KEYCODE_BACK}
2349     * by calling {@link #onBackPressed()}, though the behavior varies based
2350     * on the application compatibility mode: for
2351     * {@link android.os.Build.VERSION_CODES#ECLAIR} or later applications,
2352     * it will set up the dispatch to call {@link #onKeyUp} where the action
2353     * will be performed; for earlier applications, it will perform the
2354     * action immediately in on-down, as those versions of the platform
2355     * behaved.
2356     *
2357     * <p>Other additional default key handling may be performed
2358     * if configured with {@link #setDefaultKeyMode}.
2359     *
2360     * @return Return <code>true</code> to prevent this event from being propagated
2361     * further, or <code>false</code> to indicate that you have not handled
2362     * this event and it should continue to be propagated.
2363     * @see #onKeyUp
2364     * @see android.view.KeyEvent
2365     */
2366    public boolean onKeyDown(int keyCode, KeyEvent event)  {
2367        if (keyCode == KeyEvent.KEYCODE_BACK) {
2368            if (getApplicationInfo().targetSdkVersion
2369                    >= Build.VERSION_CODES.ECLAIR) {
2370                event.startTracking();
2371            } else {
2372                onBackPressed();
2373            }
2374            return true;
2375        }
2376
2377        if (mDefaultKeyMode == DEFAULT_KEYS_DISABLE) {
2378            return false;
2379        } else if (mDefaultKeyMode == DEFAULT_KEYS_SHORTCUT) {
2380            if (getWindow().performPanelShortcut(Window.FEATURE_OPTIONS_PANEL,
2381                    keyCode, event, Menu.FLAG_ALWAYS_PERFORM_CLOSE)) {
2382                return true;
2383            }
2384            return false;
2385        } else {
2386            // Common code for DEFAULT_KEYS_DIALER & DEFAULT_KEYS_SEARCH_*
2387            boolean clearSpannable = false;
2388            boolean handled;
2389            if ((event.getRepeatCount() != 0) || event.isSystem()) {
2390                clearSpannable = true;
2391                handled = false;
2392            } else {
2393                handled = TextKeyListener.getInstance().onKeyDown(
2394                        null, mDefaultKeySsb, keyCode, event);
2395                if (handled && mDefaultKeySsb.length() > 0) {
2396                    // something useable has been typed - dispatch it now.
2397
2398                    final String str = mDefaultKeySsb.toString();
2399                    clearSpannable = true;
2400
2401                    switch (mDefaultKeyMode) {
2402                    case DEFAULT_KEYS_DIALER:
2403                        Intent intent = new Intent(Intent.ACTION_DIAL,  Uri.parse("tel:" + str));
2404                        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
2405                        startActivity(intent);
2406                        break;
2407                    case DEFAULT_KEYS_SEARCH_LOCAL:
2408                        startSearch(str, false, null, false);
2409                        break;
2410                    case DEFAULT_KEYS_SEARCH_GLOBAL:
2411                        startSearch(str, false, null, true);
2412                        break;
2413                    }
2414                }
2415            }
2416            if (clearSpannable) {
2417                mDefaultKeySsb.clear();
2418                mDefaultKeySsb.clearSpans();
2419                Selection.setSelection(mDefaultKeySsb,0);
2420            }
2421            return handled;
2422        }
2423    }
2424
2425    /**
2426     * Default implementation of {@link KeyEvent.Callback#onKeyLongPress(int, KeyEvent)
2427     * KeyEvent.Callback.onKeyLongPress()}: always returns false (doesn't handle
2428     * the event).
2429     */
2430    public boolean onKeyLongPress(int keyCode, KeyEvent event) {
2431        return false;
2432    }
2433
2434    /**
2435     * Called when a key was released and not handled by any of the views
2436     * inside of the activity. So, for example, key presses while the cursor
2437     * is inside a TextView will not trigger the event (unless it is a navigation
2438     * to another object) because TextView handles its own key presses.
2439     *
2440     * <p>The default implementation handles KEYCODE_BACK to stop the activity
2441     * and go back.
2442     *
2443     * @return Return <code>true</code> to prevent this event from being propagated
2444     * further, or <code>false</code> to indicate that you have not handled
2445     * this event and it should continue to be propagated.
2446     * @see #onKeyDown
2447     * @see KeyEvent
2448     */
2449    public boolean onKeyUp(int keyCode, KeyEvent event) {
2450        if (getApplicationInfo().targetSdkVersion
2451                >= Build.VERSION_CODES.ECLAIR) {
2452            if (keyCode == KeyEvent.KEYCODE_BACK && event.isTracking()
2453                    && !event.isCanceled()) {
2454                onBackPressed();
2455                return true;
2456            }
2457        }
2458        return false;
2459    }
2460
2461    /**
2462     * Default implementation of {@link KeyEvent.Callback#onKeyMultiple(int, int, KeyEvent)
2463     * KeyEvent.Callback.onKeyMultiple()}: always returns false (doesn't handle
2464     * the event).
2465     */
2466    public boolean onKeyMultiple(int keyCode, int repeatCount, KeyEvent event) {
2467        return false;
2468    }
2469
2470    /**
2471     * Called when the activity has detected the user's press of the back
2472     * key.  The default implementation simply finishes the current activity,
2473     * but you can override this to do whatever you want.
2474     */
2475    public void onBackPressed() {
2476        if (mActionBar != null && mActionBar.collapseActionView()) {
2477            return;
2478        }
2479
2480        if (!mFragments.popBackStackImmediate()) {
2481            finishAfterTransition();
2482        }
2483    }
2484
2485    /**
2486     * Called when a key shortcut event is not handled by any of the views in the Activity.
2487     * Override this method to implement global key shortcuts for the Activity.
2488     * Key shortcuts can also be implemented by setting the
2489     * {@link MenuItem#setShortcut(char, char) shortcut} property of menu items.
2490     *
2491     * @param keyCode The value in event.getKeyCode().
2492     * @param event Description of the key event.
2493     * @return True if the key shortcut was handled.
2494     */
2495    public boolean onKeyShortcut(int keyCode, KeyEvent event) {
2496        return false;
2497    }
2498
2499    /**
2500     * Called when a touch screen event was not handled by any of the views
2501     * under it.  This is most useful to process touch events that happen
2502     * outside of your window bounds, where there is no view to receive it.
2503     *
2504     * @param event The touch screen event being processed.
2505     *
2506     * @return Return true if you have consumed the event, false if you haven't.
2507     * The default implementation always returns false.
2508     */
2509    public boolean onTouchEvent(MotionEvent event) {
2510        if (mWindow.shouldCloseOnTouch(this, event)) {
2511            finish();
2512            return true;
2513        }
2514
2515        return false;
2516    }
2517
2518    /**
2519     * Called when the trackball was moved and not handled by any of the
2520     * views inside of the activity.  So, for example, if the trackball moves
2521     * while focus is on a button, you will receive a call here because
2522     * buttons do not normally do anything with trackball events.  The call
2523     * here happens <em>before</em> trackball movements are converted to
2524     * DPAD key events, which then get sent back to the view hierarchy, and
2525     * will be processed at the point for things like focus navigation.
2526     *
2527     * @param event The trackball event being processed.
2528     *
2529     * @return Return true if you have consumed the event, false if you haven't.
2530     * The default implementation always returns false.
2531     */
2532    public boolean onTrackballEvent(MotionEvent event) {
2533        return false;
2534    }
2535
2536    /**
2537     * Called when a generic motion event was not handled by any of the
2538     * views inside of the activity.
2539     * <p>
2540     * Generic motion events describe joystick movements, mouse hovers, track pad
2541     * touches, scroll wheel movements and other input events.  The
2542     * {@link MotionEvent#getSource() source} of the motion event specifies
2543     * the class of input that was received.  Implementations of this method
2544     * must examine the bits in the source before processing the event.
2545     * The following code example shows how this is done.
2546     * </p><p>
2547     * Generic motion events with source class
2548     * {@link android.view.InputDevice#SOURCE_CLASS_POINTER}
2549     * are delivered to the view under the pointer.  All other generic motion events are
2550     * delivered to the focused view.
2551     * </p><p>
2552     * See {@link View#onGenericMotionEvent(MotionEvent)} for an example of how to
2553     * handle this event.
2554     * </p>
2555     *
2556     * @param event The generic motion event being processed.
2557     *
2558     * @return Return true if you have consumed the event, false if you haven't.
2559     * The default implementation always returns false.
2560     */
2561    public boolean onGenericMotionEvent(MotionEvent event) {
2562        return false;
2563    }
2564
2565    /**
2566     * Called whenever a key, touch, or trackball event is dispatched to the
2567     * activity.  Implement this method if you wish to know that the user has
2568     * interacted with the device in some way while your activity is running.
2569     * This callback and {@link #onUserLeaveHint} are intended to help
2570     * activities manage status bar notifications intelligently; specifically,
2571     * for helping activities determine the proper time to cancel a notfication.
2572     *
2573     * <p>All calls to your activity's {@link #onUserLeaveHint} callback will
2574     * be accompanied by calls to {@link #onUserInteraction}.  This
2575     * ensures that your activity will be told of relevant user activity such
2576     * as pulling down the notification pane and touching an item there.
2577     *
2578     * <p>Note that this callback will be invoked for the touch down action
2579     * that begins a touch gesture, but may not be invoked for the touch-moved
2580     * and touch-up actions that follow.
2581     *
2582     * @see #onUserLeaveHint()
2583     */
2584    public void onUserInteraction() {
2585    }
2586
2587    public void onWindowAttributesChanged(WindowManager.LayoutParams params) {
2588        // Update window manager if: we have a view, that view is
2589        // attached to its parent (which will be a RootView), and
2590        // this activity is not embedded.
2591        if (mParent == null) {
2592            View decor = mDecor;
2593            if (decor != null && decor.getParent() != null) {
2594                getWindowManager().updateViewLayout(decor, params);
2595            }
2596        }
2597    }
2598
2599    public void onContentChanged() {
2600    }
2601
2602    /**
2603     * Called when the current {@link Window} of the activity gains or loses
2604     * focus.  This is the best indicator of whether this activity is visible
2605     * to the user.  The default implementation clears the key tracking
2606     * state, so should always be called.
2607     *
2608     * <p>Note that this provides information about global focus state, which
2609     * is managed independently of activity lifecycles.  As such, while focus
2610     * changes will generally have some relation to lifecycle changes (an
2611     * activity that is stopped will not generally get window focus), you
2612     * should not rely on any particular order between the callbacks here and
2613     * those in the other lifecycle methods such as {@link #onResume}.
2614     *
2615     * <p>As a general rule, however, a resumed activity will have window
2616     * focus...  unless it has displayed other dialogs or popups that take
2617     * input focus, in which case the activity itself will not have focus
2618     * when the other windows have it.  Likewise, the system may display
2619     * system-level windows (such as the status bar notification panel or
2620     * a system alert) which will temporarily take window input focus without
2621     * pausing the foreground activity.
2622     *
2623     * @param hasFocus Whether the window of this activity has focus.
2624     *
2625     * @see #hasWindowFocus()
2626     * @see #onResume
2627     * @see View#onWindowFocusChanged(boolean)
2628     */
2629    public void onWindowFocusChanged(boolean hasFocus) {
2630    }
2631
2632    /**
2633     * Called when the main window associated with the activity has been
2634     * attached to the window manager.
2635     * See {@link View#onAttachedToWindow() View.onAttachedToWindow()}
2636     * for more information.
2637     * @see View#onAttachedToWindow
2638     */
2639    public void onAttachedToWindow() {
2640    }
2641
2642    /**
2643     * Called when the main window associated with the activity has been
2644     * detached from the window manager.
2645     * See {@link View#onDetachedFromWindow() View.onDetachedFromWindow()}
2646     * for more information.
2647     * @see View#onDetachedFromWindow
2648     */
2649    public void onDetachedFromWindow() {
2650    }
2651
2652    /**
2653     * Returns true if this activity's <em>main</em> window currently has window focus.
2654     * Note that this is not the same as the view itself having focus.
2655     *
2656     * @return True if this activity's main window currently has window focus.
2657     *
2658     * @see #onWindowAttributesChanged(android.view.WindowManager.LayoutParams)
2659     */
2660    public boolean hasWindowFocus() {
2661        Window w = getWindow();
2662        if (w != null) {
2663            View d = w.getDecorView();
2664            if (d != null) {
2665                return d.hasWindowFocus();
2666            }
2667        }
2668        return false;
2669    }
2670
2671    /**
2672     * Called when the main window associated with the activity has been dismissed.
2673     * @hide
2674     */
2675    @Override
2676    public void onWindowDismissed() {
2677        finish();
2678    }
2679
2680    /**
2681     * Called to process key events.  You can override this to intercept all
2682     * key events before they are dispatched to the window.  Be sure to call
2683     * this implementation for key events that should be handled normally.
2684     *
2685     * @param event The key event.
2686     *
2687     * @return boolean Return true if this event was consumed.
2688     */
2689    public boolean dispatchKeyEvent(KeyEvent event) {
2690        onUserInteraction();
2691
2692        // Let action bars open menus in response to the menu key prioritized over
2693        // the window handling it
2694        if (event.getKeyCode() == KeyEvent.KEYCODE_MENU &&
2695                mActionBar != null && mActionBar.onMenuKeyEvent(event)) {
2696            return true;
2697        }
2698
2699        Window win = getWindow();
2700        if (win.superDispatchKeyEvent(event)) {
2701            return true;
2702        }
2703        View decor = mDecor;
2704        if (decor == null) decor = win.getDecorView();
2705        return event.dispatch(this, decor != null
2706                ? decor.getKeyDispatcherState() : null, this);
2707    }
2708
2709    /**
2710     * Called to process a key shortcut event.
2711     * You can override this to intercept all key shortcut events before they are
2712     * dispatched to the window.  Be sure to call this implementation for key shortcut
2713     * events that should be handled normally.
2714     *
2715     * @param event The key shortcut event.
2716     * @return True if this event was consumed.
2717     */
2718    public boolean dispatchKeyShortcutEvent(KeyEvent event) {
2719        onUserInteraction();
2720        if (getWindow().superDispatchKeyShortcutEvent(event)) {
2721            return true;
2722        }
2723        return onKeyShortcut(event.getKeyCode(), event);
2724    }
2725
2726    /**
2727     * Called to process touch screen events.  You can override this to
2728     * intercept all touch screen events before they are dispatched to the
2729     * window.  Be sure to call this implementation for touch screen events
2730     * that should be handled normally.
2731     *
2732     * @param ev The touch screen event.
2733     *
2734     * @return boolean Return true if this event was consumed.
2735     */
2736    public boolean dispatchTouchEvent(MotionEvent ev) {
2737        if (ev.getAction() == MotionEvent.ACTION_DOWN) {
2738            onUserInteraction();
2739        }
2740        if (getWindow().superDispatchTouchEvent(ev)) {
2741            return true;
2742        }
2743        return onTouchEvent(ev);
2744    }
2745
2746    /**
2747     * Called to process trackball events.  You can override this to
2748     * intercept all trackball events before they are dispatched to the
2749     * window.  Be sure to call this implementation for trackball events
2750     * that should be handled normally.
2751     *
2752     * @param ev The trackball event.
2753     *
2754     * @return boolean Return true if this event was consumed.
2755     */
2756    public boolean dispatchTrackballEvent(MotionEvent ev) {
2757        onUserInteraction();
2758        if (getWindow().superDispatchTrackballEvent(ev)) {
2759            return true;
2760        }
2761        return onTrackballEvent(ev);
2762    }
2763
2764    /**
2765     * Called to process generic motion events.  You can override this to
2766     * intercept all generic motion events before they are dispatched to the
2767     * window.  Be sure to call this implementation for generic motion events
2768     * that should be handled normally.
2769     *
2770     * @param ev The generic motion event.
2771     *
2772     * @return boolean Return true if this event was consumed.
2773     */
2774    public boolean dispatchGenericMotionEvent(MotionEvent ev) {
2775        onUserInteraction();
2776        if (getWindow().superDispatchGenericMotionEvent(ev)) {
2777            return true;
2778        }
2779        return onGenericMotionEvent(ev);
2780    }
2781
2782    public boolean dispatchPopulateAccessibilityEvent(AccessibilityEvent event) {
2783        event.setClassName(getClass().getName());
2784        event.setPackageName(getPackageName());
2785
2786        LayoutParams params = getWindow().getAttributes();
2787        boolean isFullScreen = (params.width == LayoutParams.MATCH_PARENT) &&
2788            (params.height == LayoutParams.MATCH_PARENT);
2789        event.setFullScreen(isFullScreen);
2790
2791        CharSequence title = getTitle();
2792        if (!TextUtils.isEmpty(title)) {
2793           event.getText().add(title);
2794        }
2795
2796        return true;
2797    }
2798
2799    /**
2800     * Default implementation of
2801     * {@link android.view.Window.Callback#onCreatePanelView}
2802     * for activities. This
2803     * simply returns null so that all panel sub-windows will have the default
2804     * menu behavior.
2805     */
2806    @Nullable
2807    public View onCreatePanelView(int featureId) {
2808        return null;
2809    }
2810
2811    /**
2812     * Default implementation of
2813     * {@link android.view.Window.Callback#onCreatePanelMenu}
2814     * for activities.  This calls through to the new
2815     * {@link #onCreateOptionsMenu} method for the
2816     * {@link android.view.Window#FEATURE_OPTIONS_PANEL} panel,
2817     * so that subclasses of Activity don't need to deal with feature codes.
2818     */
2819    public boolean onCreatePanelMenu(int featureId, Menu menu) {
2820        if (featureId == Window.FEATURE_OPTIONS_PANEL) {
2821            boolean show = onCreateOptionsMenu(menu);
2822            show |= mFragments.dispatchCreateOptionsMenu(menu, getMenuInflater());
2823            return show;
2824        }
2825        return false;
2826    }
2827
2828    /**
2829     * Default implementation of
2830     * {@link android.view.Window.Callback#onPreparePanel}
2831     * for activities.  This
2832     * calls through to the new {@link #onPrepareOptionsMenu} method for the
2833     * {@link android.view.Window#FEATURE_OPTIONS_PANEL}
2834     * panel, so that subclasses of
2835     * Activity don't need to deal with feature codes.
2836     */
2837    public boolean onPreparePanel(int featureId, View view, Menu menu) {
2838        if (featureId == Window.FEATURE_OPTIONS_PANEL && menu != null) {
2839            boolean goforit = onPrepareOptionsMenu(menu);
2840            goforit |= mFragments.dispatchPrepareOptionsMenu(menu);
2841            return goforit;
2842        }
2843        return true;
2844    }
2845
2846    /**
2847     * {@inheritDoc}
2848     *
2849     * @return The default implementation returns true.
2850     */
2851    public boolean onMenuOpened(int featureId, Menu menu) {
2852        if (featureId == Window.FEATURE_ACTION_BAR) {
2853            initWindowDecorActionBar();
2854            if (mActionBar != null) {
2855                mActionBar.dispatchMenuVisibilityChanged(true);
2856            } else {
2857                Log.e(TAG, "Tried to open action bar menu with no action bar");
2858            }
2859        }
2860        return true;
2861    }
2862
2863    /**
2864     * Default implementation of
2865     * {@link android.view.Window.Callback#onMenuItemSelected}
2866     * for activities.  This calls through to the new
2867     * {@link #onOptionsItemSelected} method for the
2868     * {@link android.view.Window#FEATURE_OPTIONS_PANEL}
2869     * panel, so that subclasses of
2870     * Activity don't need to deal with feature codes.
2871     */
2872    public boolean onMenuItemSelected(int featureId, MenuItem item) {
2873        CharSequence titleCondensed = item.getTitleCondensed();
2874
2875        switch (featureId) {
2876            case Window.FEATURE_OPTIONS_PANEL:
2877                // Put event logging here so it gets called even if subclass
2878                // doesn't call through to superclass's implmeentation of each
2879                // of these methods below
2880                if(titleCondensed != null) {
2881                    EventLog.writeEvent(50000, 0, titleCondensed.toString());
2882                }
2883                if (onOptionsItemSelected(item)) {
2884                    return true;
2885                }
2886                if (mFragments.dispatchOptionsItemSelected(item)) {
2887                    return true;
2888                }
2889                if (item.getItemId() == android.R.id.home && mActionBar != null &&
2890                        (mActionBar.getDisplayOptions() & ActionBar.DISPLAY_HOME_AS_UP) != 0) {
2891                    if (mParent == null) {
2892                        return onNavigateUp();
2893                    } else {
2894                        return mParent.onNavigateUpFromChild(this);
2895                    }
2896                }
2897                return false;
2898
2899            case Window.FEATURE_CONTEXT_MENU:
2900                if(titleCondensed != null) {
2901                    EventLog.writeEvent(50000, 1, titleCondensed.toString());
2902                }
2903                if (onContextItemSelected(item)) {
2904                    return true;
2905                }
2906                return mFragments.dispatchContextItemSelected(item);
2907
2908            default:
2909                return false;
2910        }
2911    }
2912
2913    /**
2914     * Default implementation of
2915     * {@link android.view.Window.Callback#onPanelClosed(int, Menu)} for
2916     * activities. This calls through to {@link #onOptionsMenuClosed(Menu)}
2917     * method for the {@link android.view.Window#FEATURE_OPTIONS_PANEL} panel,
2918     * so that subclasses of Activity don't need to deal with feature codes.
2919     * For context menus ({@link Window#FEATURE_CONTEXT_MENU}), the
2920     * {@link #onContextMenuClosed(Menu)} will be called.
2921     */
2922    public void onPanelClosed(int featureId, Menu menu) {
2923        switch (featureId) {
2924            case Window.FEATURE_OPTIONS_PANEL:
2925                mFragments.dispatchOptionsMenuClosed(menu);
2926                onOptionsMenuClosed(menu);
2927                break;
2928
2929            case Window.FEATURE_CONTEXT_MENU:
2930                onContextMenuClosed(menu);
2931                break;
2932
2933            case Window.FEATURE_ACTION_BAR:
2934                initWindowDecorActionBar();
2935                mActionBar.dispatchMenuVisibilityChanged(false);
2936                break;
2937        }
2938    }
2939
2940    /**
2941     * Declare that the options menu has changed, so should be recreated.
2942     * The {@link #onCreateOptionsMenu(Menu)} method will be called the next
2943     * time it needs to be displayed.
2944     */
2945    public void invalidateOptionsMenu() {
2946        if (mActionBar == null || !mActionBar.invalidateOptionsMenu()) {
2947            mWindow.invalidatePanelMenu(Window.FEATURE_OPTIONS_PANEL);
2948        }
2949    }
2950
2951    /**
2952     * Initialize the contents of the Activity's standard options menu.  You
2953     * should place your menu items in to <var>menu</var>.
2954     *
2955     * <p>This is only called once, the first time the options menu is
2956     * displayed.  To update the menu every time it is displayed, see
2957     * {@link #onPrepareOptionsMenu}.
2958     *
2959     * <p>The default implementation populates the menu with standard system
2960     * menu items.  These are placed in the {@link Menu#CATEGORY_SYSTEM} group so that
2961     * they will be correctly ordered with application-defined menu items.
2962     * Deriving classes should always call through to the base implementation.
2963     *
2964     * <p>You can safely hold on to <var>menu</var> (and any items created
2965     * from it), making modifications to it as desired, until the next
2966     * time onCreateOptionsMenu() is called.
2967     *
2968     * <p>When you add items to the menu, you can implement the Activity's
2969     * {@link #onOptionsItemSelected} method to handle them there.
2970     *
2971     * @param menu The options menu in which you place your items.
2972     *
2973     * @return You must return true for the menu to be displayed;
2974     *         if you return false it will not be shown.
2975     *
2976     * @see #onPrepareOptionsMenu
2977     * @see #onOptionsItemSelected
2978     */
2979    public boolean onCreateOptionsMenu(Menu menu) {
2980        if (mParent != null) {
2981            return mParent.onCreateOptionsMenu(menu);
2982        }
2983        return true;
2984    }
2985
2986    /**
2987     * Prepare the Screen's standard options menu to be displayed.  This is
2988     * called right before the menu is shown, every time it is shown.  You can
2989     * use this method to efficiently enable/disable items or otherwise
2990     * dynamically modify the contents.
2991     *
2992     * <p>The default implementation updates the system menu items based on the
2993     * activity's state.  Deriving classes should always call through to the
2994     * base class implementation.
2995     *
2996     * @param menu The options menu as last shown or first initialized by
2997     *             onCreateOptionsMenu().
2998     *
2999     * @return You must return true for the menu to be displayed;
3000     *         if you return false it will not be shown.
3001     *
3002     * @see #onCreateOptionsMenu
3003     */
3004    public boolean onPrepareOptionsMenu(Menu menu) {
3005        if (mParent != null) {
3006            return mParent.onPrepareOptionsMenu(menu);
3007        }
3008        return true;
3009    }
3010
3011    /**
3012     * This hook is called whenever an item in your options menu is selected.
3013     * The default implementation simply returns false to have the normal
3014     * processing happen (calling the item's Runnable or sending a message to
3015     * its Handler as appropriate).  You can use this method for any items
3016     * for which you would like to do processing without those other
3017     * facilities.
3018     *
3019     * <p>Derived classes should call through to the base class for it to
3020     * perform the default menu handling.</p>
3021     *
3022     * @param item The menu item that was selected.
3023     *
3024     * @return boolean Return false to allow normal menu processing to
3025     *         proceed, true to consume it here.
3026     *
3027     * @see #onCreateOptionsMenu
3028     */
3029    public boolean onOptionsItemSelected(MenuItem item) {
3030        if (mParent != null) {
3031            return mParent.onOptionsItemSelected(item);
3032        }
3033        return false;
3034    }
3035
3036    /**
3037     * This method is called whenever the user chooses to navigate Up within your application's
3038     * activity hierarchy from the action bar.
3039     *
3040     * <p>If the attribute {@link android.R.attr#parentActivityName parentActivityName}
3041     * was specified in the manifest for this activity or an activity-alias to it,
3042     * default Up navigation will be handled automatically. If any activity
3043     * along the parent chain requires extra Intent arguments, the Activity subclass
3044     * should override the method {@link #onPrepareNavigateUpTaskStack(TaskStackBuilder)}
3045     * to supply those arguments.</p>
3046     *
3047     * <p>See <a href="{@docRoot}guide/topics/fundamentals/tasks-and-back-stack.html">Tasks and Back Stack</a>
3048     * from the developer guide and <a href="{@docRoot}design/patterns/navigation.html">Navigation</a>
3049     * from the design guide for more information about navigating within your app.</p>
3050     *
3051     * <p>See the {@link TaskStackBuilder} class and the Activity methods
3052     * {@link #getParentActivityIntent()}, {@link #shouldUpRecreateTask(Intent)}, and
3053     * {@link #navigateUpTo(Intent)} for help implementing custom Up navigation.
3054     * The AppNavigation sample application in the Android SDK is also available for reference.</p>
3055     *
3056     * @return true if Up navigation completed successfully and this Activity was finished,
3057     *         false otherwise.
3058     */
3059    public boolean onNavigateUp() {
3060        // Automatically handle hierarchical Up navigation if the proper
3061        // metadata is available.
3062        Intent upIntent = getParentActivityIntent();
3063        if (upIntent != null) {
3064            if (mActivityInfo.taskAffinity == null) {
3065                // Activities with a null affinity are special; they really shouldn't
3066                // specify a parent activity intent in the first place. Just finish
3067                // the current activity and call it a day.
3068                finish();
3069            } else if (shouldUpRecreateTask(upIntent)) {
3070                TaskStackBuilder b = TaskStackBuilder.create(this);
3071                onCreateNavigateUpTaskStack(b);
3072                onPrepareNavigateUpTaskStack(b);
3073                b.startActivities();
3074
3075                // We can't finishAffinity if we have a result.
3076                // Fall back and simply finish the current activity instead.
3077                if (mResultCode != RESULT_CANCELED || mResultData != null) {
3078                    // Tell the developer what's going on to avoid hair-pulling.
3079                    Log.i(TAG, "onNavigateUp only finishing topmost activity to return a result");
3080                    finish();
3081                } else {
3082                    finishAffinity();
3083                }
3084            } else {
3085                navigateUpTo(upIntent);
3086            }
3087            return true;
3088        }
3089        return false;
3090    }
3091
3092    /**
3093     * This is called when a child activity of this one attempts to navigate up.
3094     * The default implementation simply calls onNavigateUp() on this activity (the parent).
3095     *
3096     * @param child The activity making the call.
3097     */
3098    public boolean onNavigateUpFromChild(Activity child) {
3099        return onNavigateUp();
3100    }
3101
3102    /**
3103     * Define the synthetic task stack that will be generated during Up navigation from
3104     * a different task.
3105     *
3106     * <p>The default implementation of this method adds the parent chain of this activity
3107     * as specified in the manifest to the supplied {@link TaskStackBuilder}. Applications
3108     * may choose to override this method to construct the desired task stack in a different
3109     * way.</p>
3110     *
3111     * <p>This method will be invoked by the default implementation of {@link #onNavigateUp()}
3112     * if {@link #shouldUpRecreateTask(Intent)} returns true when supplied with the intent
3113     * returned by {@link #getParentActivityIntent()}.</p>
3114     *
3115     * <p>Applications that wish to supply extra Intent parameters to the parent stack defined
3116     * by the manifest should override {@link #onPrepareNavigateUpTaskStack(TaskStackBuilder)}.</p>
3117     *
3118     * @param builder An empty TaskStackBuilder - the application should add intents representing
3119     *                the desired task stack
3120     */
3121    public void onCreateNavigateUpTaskStack(TaskStackBuilder builder) {
3122        builder.addParentStack(this);
3123    }
3124
3125    /**
3126     * Prepare the synthetic task stack that will be generated during Up navigation
3127     * from a different task.
3128     *
3129     * <p>This method receives the {@link TaskStackBuilder} with the constructed series of
3130     * Intents as generated by {@link #onCreateNavigateUpTaskStack(TaskStackBuilder)}.
3131     * If any extra data should be added to these intents before launching the new task,
3132     * the application should override this method and add that data here.</p>
3133     *
3134     * @param builder A TaskStackBuilder that has been populated with Intents by
3135     *                onCreateNavigateUpTaskStack.
3136     */
3137    public void onPrepareNavigateUpTaskStack(TaskStackBuilder builder) {
3138    }
3139
3140    /**
3141     * This hook is called whenever the options menu is being closed (either by the user canceling
3142     * the menu with the back/menu button, or when an item is selected).
3143     *
3144     * @param menu The options menu as last shown or first initialized by
3145     *             onCreateOptionsMenu().
3146     */
3147    public void onOptionsMenuClosed(Menu menu) {
3148        if (mParent != null) {
3149            mParent.onOptionsMenuClosed(menu);
3150        }
3151    }
3152
3153    /**
3154     * Programmatically opens the options menu. If the options menu is already
3155     * open, this method does nothing.
3156     */
3157    public void openOptionsMenu() {
3158        if (mActionBar == null || !mActionBar.openOptionsMenu()) {
3159            mWindow.openPanel(Window.FEATURE_OPTIONS_PANEL, null);
3160        }
3161    }
3162
3163    /**
3164     * Progammatically closes the options menu. If the options menu is already
3165     * closed, this method does nothing.
3166     */
3167    public void closeOptionsMenu() {
3168        mWindow.closePanel(Window.FEATURE_OPTIONS_PANEL);
3169    }
3170
3171    /**
3172     * Called when a context menu for the {@code view} is about to be shown.
3173     * Unlike {@link #onCreateOptionsMenu(Menu)}, this will be called every
3174     * time the context menu is about to be shown and should be populated for
3175     * the view (or item inside the view for {@link AdapterView} subclasses,
3176     * this can be found in the {@code menuInfo})).
3177     * <p>
3178     * Use {@link #onContextItemSelected(android.view.MenuItem)} to know when an
3179     * item has been selected.
3180     * <p>
3181     * It is not safe to hold onto the context menu after this method returns.
3182     *
3183     */
3184    public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) {
3185    }
3186
3187    /**
3188     * Registers a context menu to be shown for the given view (multiple views
3189     * can show the context menu). This method will set the
3190     * {@link OnCreateContextMenuListener} on the view to this activity, so
3191     * {@link #onCreateContextMenu(ContextMenu, View, ContextMenuInfo)} will be
3192     * called when it is time to show the context menu.
3193     *
3194     * @see #unregisterForContextMenu(View)
3195     * @param view The view that should show a context menu.
3196     */
3197    public void registerForContextMenu(View view) {
3198        view.setOnCreateContextMenuListener(this);
3199    }
3200
3201    /**
3202     * Prevents a context menu to be shown for the given view. This method will remove the
3203     * {@link OnCreateContextMenuListener} on the view.
3204     *
3205     * @see #registerForContextMenu(View)
3206     * @param view The view that should stop showing a context menu.
3207     */
3208    public void unregisterForContextMenu(View view) {
3209        view.setOnCreateContextMenuListener(null);
3210    }
3211
3212    /**
3213     * Programmatically opens the context menu for a particular {@code view}.
3214     * The {@code view} should have been added via
3215     * {@link #registerForContextMenu(View)}.
3216     *
3217     * @param view The view to show the context menu for.
3218     */
3219    public void openContextMenu(View view) {
3220        view.showContextMenu();
3221    }
3222
3223    /**
3224     * Programmatically closes the most recently opened context menu, if showing.
3225     */
3226    public void closeContextMenu() {
3227        mWindow.closePanel(Window.FEATURE_CONTEXT_MENU);
3228    }
3229
3230    /**
3231     * This hook is called whenever an item in a context menu is selected. The
3232     * default implementation simply returns false to have the normal processing
3233     * happen (calling the item's Runnable or sending a message to its Handler
3234     * as appropriate). You can use this method for any items for which you
3235     * would like to do processing without those other facilities.
3236     * <p>
3237     * Use {@link MenuItem#getMenuInfo()} to get extra information set by the
3238     * View that added this menu item.
3239     * <p>
3240     * Derived classes should call through to the base class for it to perform
3241     * the default menu handling.
3242     *
3243     * @param item The context menu item that was selected.
3244     * @return boolean Return false to allow normal context menu processing to
3245     *         proceed, true to consume it here.
3246     */
3247    public boolean onContextItemSelected(MenuItem item) {
3248        if (mParent != null) {
3249            return mParent.onContextItemSelected(item);
3250        }
3251        return false;
3252    }
3253
3254    /**
3255     * This hook is called whenever the context menu is being closed (either by
3256     * the user canceling the menu with the back/menu button, or when an item is
3257     * selected).
3258     *
3259     * @param menu The context menu that is being closed.
3260     */
3261    public void onContextMenuClosed(Menu menu) {
3262        if (mParent != null) {
3263            mParent.onContextMenuClosed(menu);
3264        }
3265    }
3266
3267    /**
3268     * @deprecated Old no-arguments version of {@link #onCreateDialog(int, Bundle)}.
3269     */
3270    @Deprecated
3271    protected Dialog onCreateDialog(int id) {
3272        return null;
3273    }
3274
3275    /**
3276     * Callback for creating dialogs that are managed (saved and restored) for you
3277     * by the activity.  The default implementation calls through to
3278     * {@link #onCreateDialog(int)} for compatibility.
3279     *
3280     * <em>If you are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB}
3281     * or later, consider instead using a {@link DialogFragment} instead.</em>
3282     *
3283     * <p>If you use {@link #showDialog(int)}, the activity will call through to
3284     * this method the first time, and hang onto it thereafter.  Any dialog
3285     * that is created by this method will automatically be saved and restored
3286     * for you, including whether it is showing.
3287     *
3288     * <p>If you would like the activity to manage saving and restoring dialogs
3289     * for you, you should override this method and handle any ids that are
3290     * passed to {@link #showDialog}.
3291     *
3292     * <p>If you would like an opportunity to prepare your dialog before it is shown,
3293     * override {@link #onPrepareDialog(int, Dialog, Bundle)}.
3294     *
3295     * @param id The id of the dialog.
3296     * @param args The dialog arguments provided to {@link #showDialog(int, Bundle)}.
3297     * @return The dialog.  If you return null, the dialog will not be created.
3298     *
3299     * @see #onPrepareDialog(int, Dialog, Bundle)
3300     * @see #showDialog(int, Bundle)
3301     * @see #dismissDialog(int)
3302     * @see #removeDialog(int)
3303     *
3304     * @deprecated Use the new {@link DialogFragment} class with
3305     * {@link FragmentManager} instead; this is also
3306     * available on older platforms through the Android compatibility package.
3307     */
3308    @Nullable
3309    @Deprecated
3310    protected Dialog onCreateDialog(int id, Bundle args) {
3311        return onCreateDialog(id);
3312    }
3313
3314    /**
3315     * @deprecated Old no-arguments version of
3316     * {@link #onPrepareDialog(int, Dialog, Bundle)}.
3317     */
3318    @Deprecated
3319    protected void onPrepareDialog(int id, Dialog dialog) {
3320        dialog.setOwnerActivity(this);
3321    }
3322
3323    /**
3324     * Provides an opportunity to prepare a managed dialog before it is being
3325     * shown.  The default implementation calls through to
3326     * {@link #onPrepareDialog(int, Dialog)} for compatibility.
3327     *
3328     * <p>
3329     * Override this if you need to update a managed dialog based on the state
3330     * of the application each time it is shown. For example, a time picker
3331     * dialog might want to be updated with the current time. You should call
3332     * through to the superclass's implementation. The default implementation
3333     * will set this Activity as the owner activity on the Dialog.
3334     *
3335     * @param id The id of the managed dialog.
3336     * @param dialog The dialog.
3337     * @param args The dialog arguments provided to {@link #showDialog(int, Bundle)}.
3338     * @see #onCreateDialog(int, Bundle)
3339     * @see #showDialog(int)
3340     * @see #dismissDialog(int)
3341     * @see #removeDialog(int)
3342     *
3343     * @deprecated Use the new {@link DialogFragment} class with
3344     * {@link FragmentManager} instead; this is also
3345     * available on older platforms through the Android compatibility package.
3346     */
3347    @Deprecated
3348    protected void onPrepareDialog(int id, Dialog dialog, Bundle args) {
3349        onPrepareDialog(id, dialog);
3350    }
3351
3352    /**
3353     * Simple version of {@link #showDialog(int, Bundle)} that does not
3354     * take any arguments.  Simply calls {@link #showDialog(int, Bundle)}
3355     * with null arguments.
3356     *
3357     * @deprecated Use the new {@link DialogFragment} class with
3358     * {@link FragmentManager} instead; this is also
3359     * available on older platforms through the Android compatibility package.
3360     */
3361    @Deprecated
3362    public final void showDialog(int id) {
3363        showDialog(id, null);
3364    }
3365
3366    /**
3367     * Show a dialog managed by this activity.  A call to {@link #onCreateDialog(int, Bundle)}
3368     * will be made with the same id the first time this is called for a given
3369     * id.  From thereafter, the dialog will be automatically saved and restored.
3370     *
3371     * <em>If you are targeting {@link android.os.Build.VERSION_CODES#HONEYCOMB}
3372     * or later, consider instead using a {@link DialogFragment} instead.</em>
3373     *
3374     * <p>Each time a dialog is shown, {@link #onPrepareDialog(int, Dialog, Bundle)} will
3375     * be made to provide an opportunity to do any timely preparation.
3376     *
3377     * @param id The id of the managed dialog.
3378     * @param args Arguments to pass through to the dialog.  These will be saved
3379     * and restored for you.  Note that if the dialog is already created,
3380     * {@link #onCreateDialog(int, Bundle)} will not be called with the new
3381     * arguments but {@link #onPrepareDialog(int, Dialog, Bundle)} will be.
3382     * If you need to rebuild the dialog, call {@link #removeDialog(int)} first.
3383     * @return Returns true if the Dialog was created; false is returned if
3384     * it is not created because {@link #onCreateDialog(int, Bundle)} returns false.
3385     *
3386     * @see Dialog
3387     * @see #onCreateDialog(int, Bundle)
3388     * @see #onPrepareDialog(int, Dialog, Bundle)
3389     * @see #dismissDialog(int)
3390     * @see #removeDialog(int)
3391     *
3392     * @deprecated Use the new {@link DialogFragment} class with
3393     * {@link FragmentManager} instead; this is also
3394     * available on older platforms through the Android compatibility package.
3395     */
3396    @Nullable
3397    @Deprecated
3398    public final boolean showDialog(int id, Bundle args) {
3399        if (mManagedDialogs == null) {
3400            mManagedDialogs = new SparseArray<ManagedDialog>();
3401        }
3402        ManagedDialog md = mManagedDialogs.get(id);
3403        if (md == null) {
3404            md = new ManagedDialog();
3405            md.mDialog = createDialog(id, null, args);
3406            if (md.mDialog == null) {
3407                return false;
3408            }
3409            mManagedDialogs.put(id, md);
3410        }
3411
3412        md.mArgs = args;
3413        onPrepareDialog(id, md.mDialog, args);
3414        md.mDialog.show();
3415        return true;
3416    }
3417
3418    /**
3419     * Dismiss a dialog that was previously shown via {@link #showDialog(int)}.
3420     *
3421     * @param id The id of the managed dialog.
3422     *
3423     * @throws IllegalArgumentException if the id was not previously shown via
3424     *   {@link #showDialog(int)}.
3425     *
3426     * @see #onCreateDialog(int, Bundle)
3427     * @see #onPrepareDialog(int, Dialog, Bundle)
3428     * @see #showDialog(int)
3429     * @see #removeDialog(int)
3430     *
3431     * @deprecated Use the new {@link DialogFragment} class with
3432     * {@link FragmentManager} instead; this is also
3433     * available on older platforms through the Android compatibility package.
3434     */
3435    @Deprecated
3436    public final void dismissDialog(int id) {
3437        if (mManagedDialogs == null) {
3438            throw missingDialog(id);
3439        }
3440
3441        final ManagedDialog md = mManagedDialogs.get(id);
3442        if (md == null) {
3443            throw missingDialog(id);
3444        }
3445        md.mDialog.dismiss();
3446    }
3447
3448    /**
3449     * Creates an exception to throw if a user passed in a dialog id that is
3450     * unexpected.
3451     */
3452    private IllegalArgumentException missingDialog(int id) {
3453        return new IllegalArgumentException("no dialog with id " + id + " was ever "
3454                + "shown via Activity#showDialog");
3455    }
3456
3457    /**
3458     * Removes any internal references to a dialog managed by this Activity.
3459     * If the dialog is showing, it will dismiss it as part of the clean up.
3460     *
3461     * <p>This can be useful if you know that you will never show a dialog again and
3462     * want to avoid the overhead of saving and restoring it in the future.
3463     *
3464     * <p>As of {@link android.os.Build.VERSION_CODES#GINGERBREAD}, this function
3465     * will not throw an exception if you try to remove an ID that does not
3466     * currently have an associated dialog.</p>
3467     *
3468     * @param id The id of the managed dialog.
3469     *
3470     * @see #onCreateDialog(int, Bundle)
3471     * @see #onPrepareDialog(int, Dialog, Bundle)
3472     * @see #showDialog(int)
3473     * @see #dismissDialog(int)
3474     *
3475     * @deprecated Use the new {@link DialogFragment} class with
3476     * {@link FragmentManager} instead; this is also
3477     * available on older platforms through the Android compatibility package.
3478     */
3479    @Deprecated
3480    public final void removeDialog(int id) {
3481        if (mManagedDialogs != null) {
3482            final ManagedDialog md = mManagedDialogs.get(id);
3483            if (md != null) {
3484                md.mDialog.dismiss();
3485                mManagedDialogs.remove(id);
3486            }
3487        }
3488    }
3489
3490    /**
3491     * This hook is called when the user signals the desire to start a search.
3492     *
3493     * <p>You can use this function as a simple way to launch the search UI, in response to a
3494     * menu item, search button, or other widgets within your activity. Unless overidden,
3495     * calling this function is the same as calling
3496     * {@link #startSearch startSearch(null, false, null, false)}, which launches
3497     * search for the current activity as specified in its manifest, see {@link SearchManager}.
3498     *
3499     * <p>You can override this function to force global search, e.g. in response to a dedicated
3500     * search key, or to block search entirely (by simply returning false).
3501     *
3502     * <p>Note: when running in a {@link Configuration#UI_MODE_TYPE_TELEVISION}, the default
3503     * implementation changes to simply return false and you must supply your own custom
3504     * implementation if you want to support search.</p>
3505     *
3506     * @return Returns {@code true} if search launched, and {@code false} if the activity does
3507     * not respond to search.  The default implementation always returns {@code true}, except
3508     * when in {@link Configuration#UI_MODE_TYPE_TELEVISION} mode where it returns false.
3509     *
3510     * @see android.app.SearchManager
3511     */
3512    public boolean onSearchRequested() {
3513        if ((getResources().getConfiguration().uiMode&Configuration.UI_MODE_TYPE_MASK)
3514                != Configuration.UI_MODE_TYPE_TELEVISION) {
3515            startSearch(null, false, null, false);
3516            return true;
3517        } else {
3518            return false;
3519        }
3520    }
3521
3522    /**
3523     * This hook is called to launch the search UI.
3524     *
3525     * <p>It is typically called from onSearchRequested(), either directly from
3526     * Activity.onSearchRequested() or from an overridden version in any given
3527     * Activity.  If your goal is simply to activate search, it is preferred to call
3528     * onSearchRequested(), which may have been overridden elsewhere in your Activity.  If your goal
3529     * is to inject specific data such as context data, it is preferred to <i>override</i>
3530     * onSearchRequested(), so that any callers to it will benefit from the override.
3531     *
3532     * @param initialQuery Any non-null non-empty string will be inserted as
3533     * pre-entered text in the search query box.
3534     * @param selectInitialQuery If true, the initial query will be preselected, which means that
3535     * any further typing will replace it.  This is useful for cases where an entire pre-formed
3536     * query is being inserted.  If false, the selection point will be placed at the end of the
3537     * inserted query.  This is useful when the inserted query is text that the user entered,
3538     * and the user would expect to be able to keep typing.  <i>This parameter is only meaningful
3539     * if initialQuery is a non-empty string.</i>
3540     * @param appSearchData An application can insert application-specific
3541     * context here, in order to improve quality or specificity of its own
3542     * searches.  This data will be returned with SEARCH intent(s).  Null if
3543     * no extra data is required.
3544     * @param globalSearch If false, this will only launch the search that has been specifically
3545     * defined by the application (which is usually defined as a local search).  If no default
3546     * search is defined in the current application or activity, global search will be launched.
3547     * If true, this will always launch a platform-global (e.g. web-based) search instead.
3548     *
3549     * @see android.app.SearchManager
3550     * @see #onSearchRequested
3551     */
3552    public void startSearch(@Nullable String initialQuery, boolean selectInitialQuery,
3553            @Nullable Bundle appSearchData, boolean globalSearch) {
3554        ensureSearchManager();
3555        mSearchManager.startSearch(initialQuery, selectInitialQuery, getComponentName(),
3556                appSearchData, globalSearch);
3557    }
3558
3559    /**
3560     * Similar to {@link #startSearch}, but actually fires off the search query after invoking
3561     * the search dialog.  Made available for testing purposes.
3562     *
3563     * @param query The query to trigger.  If empty, the request will be ignored.
3564     * @param appSearchData An application can insert application-specific
3565     * context here, in order to improve quality or specificity of its own
3566     * searches.  This data will be returned with SEARCH intent(s).  Null if
3567     * no extra data is required.
3568     */
3569    public void triggerSearch(String query, @Nullable Bundle appSearchData) {
3570        ensureSearchManager();
3571        mSearchManager.triggerSearch(query, getComponentName(), appSearchData);
3572    }
3573
3574    /**
3575     * Request that key events come to this activity. Use this if your
3576     * activity has no views with focus, but the activity still wants
3577     * a chance to process key events.
3578     *
3579     * @see android.view.Window#takeKeyEvents
3580     */
3581    public void takeKeyEvents(boolean get) {
3582        getWindow().takeKeyEvents(get);
3583    }
3584
3585    /**
3586     * Enable extended window features.  This is a convenience for calling
3587     * {@link android.view.Window#requestFeature getWindow().requestFeature()}.
3588     *
3589     * @param featureId The desired feature as defined in
3590     *                  {@link android.view.Window}.
3591     * @return Returns true if the requested feature is supported and now
3592     *         enabled.
3593     *
3594     * @see android.view.Window#requestFeature
3595     */
3596    public final boolean requestWindowFeature(int featureId) {
3597        return getWindow().requestFeature(featureId);
3598    }
3599
3600    /**
3601     * Convenience for calling
3602     * {@link android.view.Window#setFeatureDrawableResource}.
3603     */
3604    public final void setFeatureDrawableResource(int featureId, int resId) {
3605        getWindow().setFeatureDrawableResource(featureId, resId);
3606    }
3607
3608    /**
3609     * Convenience for calling
3610     * {@link android.view.Window#setFeatureDrawableUri}.
3611     */
3612    public final void setFeatureDrawableUri(int featureId, Uri uri) {
3613        getWindow().setFeatureDrawableUri(featureId, uri);
3614    }
3615
3616    /**
3617     * Convenience for calling
3618     * {@link android.view.Window#setFeatureDrawable(int, Drawable)}.
3619     */
3620    public final void setFeatureDrawable(int featureId, Drawable drawable) {
3621        getWindow().setFeatureDrawable(featureId, drawable);
3622    }
3623
3624    /**
3625     * Convenience for calling
3626     * {@link android.view.Window#setFeatureDrawableAlpha}.
3627     */
3628    public final void setFeatureDrawableAlpha(int featureId, int alpha) {
3629        getWindow().setFeatureDrawableAlpha(featureId, alpha);
3630    }
3631
3632    /**
3633     * Convenience for calling
3634     * {@link android.view.Window#getLayoutInflater}.
3635     */
3636    @NonNull
3637    public LayoutInflater getLayoutInflater() {
3638        return getWindow().getLayoutInflater();
3639    }
3640
3641    /**
3642     * Returns a {@link MenuInflater} with this context.
3643     */
3644    @NonNull
3645    public MenuInflater getMenuInflater() {
3646        // Make sure that action views can get an appropriate theme.
3647        if (mMenuInflater == null) {
3648            initWindowDecorActionBar();
3649            if (mActionBar != null) {
3650                mMenuInflater = new MenuInflater(mActionBar.getThemedContext(), this);
3651            } else {
3652                mMenuInflater = new MenuInflater(this);
3653            }
3654        }
3655        return mMenuInflater;
3656    }
3657
3658    @Override
3659    protected void onApplyThemeResource(Resources.Theme theme, int resid,
3660            boolean first) {
3661        if (mParent == null) {
3662            super.onApplyThemeResource(theme, resid, first);
3663        } else {
3664            try {
3665                theme.setTo(mParent.getTheme());
3666            } catch (Exception e) {
3667                // Empty
3668            }
3669            theme.applyStyle(resid, false);
3670        }
3671
3672        // Get the primary color and update the TaskDescription for this activity
3673        if (theme != null) {
3674            TypedArray a = theme.obtainStyledAttributes(com.android.internal.R.styleable.Theme);
3675            int colorPrimary = a.getColor(com.android.internal.R.styleable.Theme_colorPrimary, 0);
3676            a.recycle();
3677            if (colorPrimary != 0) {
3678                ActivityManager.TaskDescription v = new ActivityManager.TaskDescription(null, null,
3679                        colorPrimary);
3680                setTaskDescription(v);
3681            }
3682        }
3683    }
3684
3685    /**
3686     * Same as calling {@link #startActivityForResult(Intent, int, Bundle)}
3687     * with no options.
3688     *
3689     * @param intent The intent to start.
3690     * @param requestCode If >= 0, this code will be returned in
3691     *                    onActivityResult() when the activity exits.
3692     *
3693     * @throws android.content.ActivityNotFoundException
3694     *
3695     * @see #startActivity
3696     */
3697    public void startActivityForResult(Intent intent, int requestCode) {
3698        startActivityForResult(intent, requestCode, null);
3699    }
3700
3701    /**
3702     * Launch an activity for which you would like a result when it finished.
3703     * When this activity exits, your
3704     * onActivityResult() method will be called with the given requestCode.
3705     * Using a negative requestCode is the same as calling
3706     * {@link #startActivity} (the activity is not launched as a sub-activity).
3707     *
3708     * <p>Note that this method should only be used with Intent protocols
3709     * that are defined to return a result.  In other protocols (such as
3710     * {@link Intent#ACTION_MAIN} or {@link Intent#ACTION_VIEW}), you may
3711     * not get the result when you expect.  For example, if the activity you
3712     * are launching uses the singleTask launch mode, it will not run in your
3713     * task and thus you will immediately receive a cancel result.
3714     *
3715     * <p>As a special case, if you call startActivityForResult() with a requestCode
3716     * >= 0 during the initial onCreate(Bundle savedInstanceState)/onResume() of your
3717     * activity, then your window will not be displayed until a result is
3718     * returned back from the started activity.  This is to avoid visible
3719     * flickering when redirecting to another activity.
3720     *
3721     * <p>This method throws {@link android.content.ActivityNotFoundException}
3722     * if there was no Activity found to run the given Intent.
3723     *
3724     * @param intent The intent to start.
3725     * @param requestCode If >= 0, this code will be returned in
3726     *                    onActivityResult() when the activity exits.
3727     * @param options Additional options for how the Activity should be started.
3728     * See {@link android.content.Context#startActivity(Intent, Bundle)
3729     * Context.startActivity(Intent, Bundle)} for more details.
3730     *
3731     * @throws android.content.ActivityNotFoundException
3732     *
3733     * @see #startActivity
3734     */
3735    public void startActivityForResult(Intent intent, int requestCode, @Nullable Bundle options) {
3736        if (mParent == null) {
3737            Instrumentation.ActivityResult ar =
3738                mInstrumentation.execStartActivity(
3739                    this, mMainThread.getApplicationThread(), mToken, this,
3740                    intent, requestCode, options);
3741            if (ar != null) {
3742                mMainThread.sendActivityResult(
3743                    mToken, mEmbeddedID, requestCode, ar.getResultCode(),
3744                    ar.getResultData());
3745            }
3746            if (requestCode >= 0) {
3747                // If this start is requesting a result, we can avoid making
3748                // the activity visible until the result is received.  Setting
3749                // this code during onCreate(Bundle savedInstanceState) or onResume() will keep the
3750                // activity hidden during this time, to avoid flickering.
3751                // This can only be done when a result is requested because
3752                // that guarantees we will get information back when the
3753                // activity is finished, no matter what happens to it.
3754                mStartedActivity = true;
3755            }
3756
3757            final View decor = mWindow != null ? mWindow.peekDecorView() : null;
3758            if (decor != null) {
3759                decor.cancelPendingInputEvents();
3760            }
3761            // TODO Consider clearing/flushing other event sources and events for child windows.
3762        } else {
3763            if (options != null) {
3764                mParent.startActivityFromChild(this, intent, requestCode, options);
3765            } else {
3766                // Note we want to go through this method for compatibility with
3767                // existing applications that may have overridden it.
3768                mParent.startActivityFromChild(this, intent, requestCode);
3769            }
3770        }
3771        if (options != null && !isTopOfTask()) {
3772            mActivityTransitionState.startExitOutTransition(this, options);
3773        }
3774    }
3775
3776    /**
3777     * @hide Implement to provide correct calling token.
3778     */
3779    public void startActivityForResultAsUser(Intent intent, int requestCode, UserHandle user) {
3780        startActivityForResultAsUser(intent, requestCode, null, user);
3781    }
3782
3783    /**
3784     * @hide Implement to provide correct calling token.
3785     */
3786    public void startActivityForResultAsUser(Intent intent, int requestCode,
3787            @Nullable Bundle options, UserHandle user) {
3788        if (options != null) {
3789            mActivityTransitionState.startExitOutTransition(this, options);
3790        }
3791        if (mParent != null) {
3792            throw new RuntimeException("Can't be called from a child");
3793        }
3794        Instrumentation.ActivityResult ar = mInstrumentation.execStartActivity(
3795                this, mMainThread.getApplicationThread(), mToken, this, intent, requestCode,
3796                options, user);
3797        if (ar != null) {
3798            mMainThread.sendActivityResult(
3799                mToken, mEmbeddedID, requestCode, ar.getResultCode(), ar.getResultData());
3800        }
3801        if (requestCode >= 0) {
3802            // If this start is requesting a result, we can avoid making
3803            // the activity visible until the result is received.  Setting
3804            // this code during onCreate(Bundle savedInstanceState) or onResume() will keep the
3805            // activity hidden during this time, to avoid flickering.
3806            // This can only be done when a result is requested because
3807            // that guarantees we will get information back when the
3808            // activity is finished, no matter what happens to it.
3809            mStartedActivity = true;
3810        }
3811
3812        final View decor = mWindow != null ? mWindow.peekDecorView() : null;
3813        if (decor != null) {
3814            decor.cancelPendingInputEvents();
3815        }
3816    }
3817
3818    /**
3819     * @hide Implement to provide correct calling token.
3820     */
3821    public void startActivityAsUser(Intent intent, UserHandle user) {
3822        startActivityAsUser(intent, null, user);
3823    }
3824
3825    /**
3826     * @hide Implement to provide correct calling token.
3827     */
3828    public void startActivityAsUser(Intent intent, Bundle options, UserHandle user) {
3829        if (mParent != null) {
3830            throw new RuntimeException("Can't be called from a child");
3831        }
3832        Instrumentation.ActivityResult ar =
3833                mInstrumentation.execStartActivity(
3834                        this, mMainThread.getApplicationThread(), mToken, this,
3835                        intent, -1, options, user);
3836        if (ar != null) {
3837            mMainThread.sendActivityResult(
3838                mToken, mEmbeddedID, -1, ar.getResultCode(),
3839                ar.getResultData());
3840        }
3841    }
3842
3843    /**
3844     * Start a new activity as if it was started by the activity that started our
3845     * current activity.  This is for the resolver and chooser activities, which operate
3846     * as intermediaries that dispatch their intent to the target the user selects -- to
3847     * do this, they must perform all security checks including permission grants as if
3848     * their launch had come from the original activity.
3849     * @hide
3850     */
3851    public void startActivityAsCaller(Intent intent, @Nullable Bundle options, int userId) {
3852        if (mParent != null) {
3853            throw new RuntimeException("Can't be called from a child");
3854        }
3855        Instrumentation.ActivityResult ar =
3856                mInstrumentation.execStartActivityAsCaller(
3857                        this, mMainThread.getApplicationThread(), mToken, this,
3858                        intent, -1, options, userId);
3859        if (ar != null) {
3860            mMainThread.sendActivityResult(
3861                mToken, mEmbeddedID, -1, ar.getResultCode(),
3862                ar.getResultData());
3863        }
3864    }
3865
3866    /**
3867     * Same as calling {@link #startIntentSenderForResult(IntentSender, int,
3868     * Intent, int, int, int, Bundle)} with no options.
3869     *
3870     * @param intent The IntentSender to launch.
3871     * @param requestCode If >= 0, this code will be returned in
3872     *                    onActivityResult() when the activity exits.
3873     * @param fillInIntent If non-null, this will be provided as the
3874     * intent parameter to {@link IntentSender#sendIntent}.
3875     * @param flagsMask Intent flags in the original IntentSender that you
3876     * would like to change.
3877     * @param flagsValues Desired values for any bits set in
3878     * <var>flagsMask</var>
3879     * @param extraFlags Always set to 0.
3880     */
3881    public void startIntentSenderForResult(IntentSender intent, int requestCode,
3882            @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags)
3883            throws IntentSender.SendIntentException {
3884        startIntentSenderForResult(intent, requestCode, fillInIntent, flagsMask,
3885                flagsValues, extraFlags, null);
3886    }
3887
3888    /**
3889     * Like {@link #startActivityForResult(Intent, int)}, but allowing you
3890     * to use a IntentSender to describe the activity to be started.  If
3891     * the IntentSender is for an activity, that activity will be started
3892     * as if you had called the regular {@link #startActivityForResult(Intent, int)}
3893     * here; otherwise, its associated action will be executed (such as
3894     * sending a broadcast) as if you had called
3895     * {@link IntentSender#sendIntent IntentSender.sendIntent} on it.
3896     *
3897     * @param intent The IntentSender to launch.
3898     * @param requestCode If >= 0, this code will be returned in
3899     *                    onActivityResult() when the activity exits.
3900     * @param fillInIntent If non-null, this will be provided as the
3901     * intent parameter to {@link IntentSender#sendIntent}.
3902     * @param flagsMask Intent flags in the original IntentSender that you
3903     * would like to change.
3904     * @param flagsValues Desired values for any bits set in
3905     * <var>flagsMask</var>
3906     * @param extraFlags Always set to 0.
3907     * @param options Additional options for how the Activity should be started.
3908     * See {@link android.content.Context#startActivity(Intent, Bundle)
3909     * Context.startActivity(Intent, Bundle)} for more details.  If options
3910     * have also been supplied by the IntentSender, options given here will
3911     * override any that conflict with those given by the IntentSender.
3912     */
3913    public void startIntentSenderForResult(IntentSender intent, int requestCode,
3914            @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags,
3915            Bundle options) throws IntentSender.SendIntentException {
3916        if (mParent == null) {
3917            startIntentSenderForResultInner(intent, requestCode, fillInIntent,
3918                    flagsMask, flagsValues, this, options);
3919        } else if (options != null) {
3920            mParent.startIntentSenderFromChild(this, intent, requestCode,
3921                    fillInIntent, flagsMask, flagsValues, extraFlags, options);
3922        } else {
3923            // Note we want to go through this call for compatibility with
3924            // existing applications that may have overridden the method.
3925            mParent.startIntentSenderFromChild(this, intent, requestCode,
3926                    fillInIntent, flagsMask, flagsValues, extraFlags);
3927        }
3928    }
3929
3930    private void startIntentSenderForResultInner(IntentSender intent, int requestCode,
3931            Intent fillInIntent, int flagsMask, int flagsValues, Activity activity,
3932            Bundle options)
3933            throws IntentSender.SendIntentException {
3934        try {
3935            String resolvedType = null;
3936            if (fillInIntent != null) {
3937                fillInIntent.migrateExtraStreamToClipData();
3938                fillInIntent.prepareToLeaveProcess();
3939                resolvedType = fillInIntent.resolveTypeIfNeeded(getContentResolver());
3940            }
3941            int result = ActivityManagerNative.getDefault()
3942                .startActivityIntentSender(mMainThread.getApplicationThread(), intent,
3943                        fillInIntent, resolvedType, mToken, activity.mEmbeddedID,
3944                        requestCode, flagsMask, flagsValues, options);
3945            if (result == ActivityManager.START_CANCELED) {
3946                throw new IntentSender.SendIntentException();
3947            }
3948            Instrumentation.checkStartActivityResult(result, null);
3949        } catch (RemoteException e) {
3950        }
3951        if (requestCode >= 0) {
3952            // If this start is requesting a result, we can avoid making
3953            // the activity visible until the result is received.  Setting
3954            // this code during onCreate(Bundle savedInstanceState) or onResume() will keep the
3955            // activity hidden during this time, to avoid flickering.
3956            // This can only be done when a result is requested because
3957            // that guarantees we will get information back when the
3958            // activity is finished, no matter what happens to it.
3959            mStartedActivity = true;
3960        }
3961    }
3962
3963    /**
3964     * Same as {@link #startActivity(Intent, Bundle)} with no options
3965     * specified.
3966     *
3967     * @param intent The intent to start.
3968     *
3969     * @throws android.content.ActivityNotFoundException
3970     *
3971     * @see {@link #startActivity(Intent, Bundle)}
3972     * @see #startActivityForResult
3973     */
3974    @Override
3975    public void startActivity(Intent intent) {
3976        this.startActivity(intent, null);
3977    }
3978
3979    /**
3980     * Launch a new activity.  You will not receive any information about when
3981     * the activity exits.  This implementation overrides the base version,
3982     * providing information about
3983     * the activity performing the launch.  Because of this additional
3984     * information, the {@link Intent#FLAG_ACTIVITY_NEW_TASK} launch flag is not
3985     * required; if not specified, the new activity will be added to the
3986     * task of the caller.
3987     *
3988     * <p>This method throws {@link android.content.ActivityNotFoundException}
3989     * if there was no Activity found to run the given Intent.
3990     *
3991     * @param intent The intent to start.
3992     * @param options Additional options for how the Activity should be started.
3993     * See {@link android.content.Context#startActivity(Intent, Bundle)
3994     * Context.startActivity(Intent, Bundle)} for more details.
3995     *
3996     * @throws android.content.ActivityNotFoundException
3997     *
3998     * @see {@link #startActivity(Intent)}
3999     * @see #startActivityForResult
4000     */
4001    @Override
4002    public void startActivity(Intent intent, @Nullable Bundle options) {
4003        if (options != null) {
4004            startActivityForResult(intent, -1, options);
4005        } else {
4006            // Note we want to go through this call for compatibility with
4007            // applications that may have overridden the method.
4008            startActivityForResult(intent, -1);
4009        }
4010    }
4011
4012    /**
4013     * Same as {@link #startActivities(Intent[], Bundle)} with no options
4014     * specified.
4015     *
4016     * @param intents The intents to start.
4017     *
4018     * @throws android.content.ActivityNotFoundException
4019     *
4020     * @see {@link #startActivities(Intent[], Bundle)}
4021     * @see #startActivityForResult
4022     */
4023    @Override
4024    public void startActivities(Intent[] intents) {
4025        startActivities(intents, null);
4026    }
4027
4028    /**
4029     * Launch a new activity.  You will not receive any information about when
4030     * the activity exits.  This implementation overrides the base version,
4031     * providing information about
4032     * the activity performing the launch.  Because of this additional
4033     * information, the {@link Intent#FLAG_ACTIVITY_NEW_TASK} launch flag is not
4034     * required; if not specified, the new activity will be added to the
4035     * task of the caller.
4036     *
4037     * <p>This method throws {@link android.content.ActivityNotFoundException}
4038     * if there was no Activity found to run the given Intent.
4039     *
4040     * @param intents The intents to start.
4041     * @param options Additional options for how the Activity should be started.
4042     * See {@link android.content.Context#startActivity(Intent, Bundle)
4043     * Context.startActivity(Intent, Bundle)} for more details.
4044     *
4045     * @throws android.content.ActivityNotFoundException
4046     *
4047     * @see {@link #startActivities(Intent[])}
4048     * @see #startActivityForResult
4049     */
4050    @Override
4051    public void startActivities(Intent[] intents, @Nullable Bundle options) {
4052        mInstrumentation.execStartActivities(this, mMainThread.getApplicationThread(),
4053                mToken, this, intents, options);
4054    }
4055
4056    /**
4057     * Same as calling {@link #startIntentSender(IntentSender, Intent, int, int, int, Bundle)}
4058     * with no options.
4059     *
4060     * @param intent The IntentSender to launch.
4061     * @param fillInIntent If non-null, this will be provided as the
4062     * intent parameter to {@link IntentSender#sendIntent}.
4063     * @param flagsMask Intent flags in the original IntentSender that you
4064     * would like to change.
4065     * @param flagsValues Desired values for any bits set in
4066     * <var>flagsMask</var>
4067     * @param extraFlags Always set to 0.
4068     */
4069    public void startIntentSender(IntentSender intent,
4070            @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags)
4071            throws IntentSender.SendIntentException {
4072        startIntentSender(intent, fillInIntent, flagsMask, flagsValues,
4073                extraFlags, null);
4074    }
4075
4076    /**
4077     * Like {@link #startActivity(Intent, Bundle)}, but taking a IntentSender
4078     * to start; see
4079     * {@link #startIntentSenderForResult(IntentSender, int, Intent, int, int, int, Bundle)}
4080     * for more information.
4081     *
4082     * @param intent The IntentSender to launch.
4083     * @param fillInIntent If non-null, this will be provided as the
4084     * intent parameter to {@link IntentSender#sendIntent}.
4085     * @param flagsMask Intent flags in the original IntentSender that you
4086     * would like to change.
4087     * @param flagsValues Desired values for any bits set in
4088     * <var>flagsMask</var>
4089     * @param extraFlags Always set to 0.
4090     * @param options Additional options for how the Activity should be started.
4091     * See {@link android.content.Context#startActivity(Intent, Bundle)
4092     * Context.startActivity(Intent, Bundle)} for more details.  If options
4093     * have also been supplied by the IntentSender, options given here will
4094     * override any that conflict with those given by the IntentSender.
4095     */
4096    public void startIntentSender(IntentSender intent,
4097            @Nullable Intent fillInIntent, int flagsMask, int flagsValues, int extraFlags,
4098            Bundle options) throws IntentSender.SendIntentException {
4099        if (options != null) {
4100            startIntentSenderForResult(intent, -1, fillInIntent, flagsMask,
4101                    flagsValues, extraFlags, options);
4102        } else {
4103            // Note we want to go through this call for compatibility with
4104            // applications that may have overridden the method.
4105            startIntentSenderForResult(intent, -1, fillInIntent, flagsMask,
4106                    flagsValues, extraFlags);
4107        }
4108    }
4109
4110    /**
4111     * Same as calling {@link #startActivityIfNeeded(Intent, int, Bundle)}
4112     * with no options.
4113     *
4114     * @param intent The intent to start.
4115     * @param requestCode If >= 0, this code will be returned in
4116     *         onActivityResult() when the activity exits, as described in
4117     *         {@link #startActivityForResult}.
4118     *
4119     * @return If a new activity was launched then true is returned; otherwise
4120     *         false is returned and you must handle the Intent yourself.
4121     *
4122     * @see #startActivity
4123     * @see #startActivityForResult
4124     */
4125    public boolean startActivityIfNeeded(@NonNull Intent intent, int requestCode) {
4126        return startActivityIfNeeded(intent, requestCode, null);
4127    }
4128
4129    /**
4130     * A special variation to launch an activity only if a new activity
4131     * instance is needed to handle the given Intent.  In other words, this is
4132     * just like {@link #startActivityForResult(Intent, int)} except: if you are
4133     * using the {@link Intent#FLAG_ACTIVITY_SINGLE_TOP} flag, or
4134     * singleTask or singleTop
4135     * {@link android.R.styleable#AndroidManifestActivity_launchMode launchMode},
4136     * and the activity
4137     * that handles <var>intent</var> is the same as your currently running
4138     * activity, then a new instance is not needed.  In this case, instead of
4139     * the normal behavior of calling {@link #onNewIntent} this function will
4140     * return and you can handle the Intent yourself.
4141     *
4142     * <p>This function can only be called from a top-level activity; if it is
4143     * called from a child activity, a runtime exception will be thrown.
4144     *
4145     * @param intent The intent to start.
4146     * @param requestCode If >= 0, this code will be returned in
4147     *         onActivityResult() when the activity exits, as described in
4148     *         {@link #startActivityForResult}.
4149     * @param options Additional options for how the Activity should be started.
4150     * See {@link android.content.Context#startActivity(Intent, Bundle)
4151     * Context.startActivity(Intent, Bundle)} for more details.
4152     *
4153     * @return If a new activity was launched then true is returned; otherwise
4154     *         false is returned and you must handle the Intent yourself.
4155     *
4156     * @see #startActivity
4157     * @see #startActivityForResult
4158     */
4159    public boolean startActivityIfNeeded(@NonNull Intent intent, int requestCode,
4160            @Nullable Bundle options) {
4161        if (mParent == null) {
4162            int result = ActivityManager.START_RETURN_INTENT_TO_CALLER;
4163            try {
4164                intent.migrateExtraStreamToClipData();
4165                intent.prepareToLeaveProcess();
4166                result = ActivityManagerNative.getDefault()
4167                    .startActivity(mMainThread.getApplicationThread(), getBasePackageName(),
4168                            intent, intent.resolveTypeIfNeeded(getContentResolver()), mToken,
4169                            mEmbeddedID, requestCode, ActivityManager.START_FLAG_ONLY_IF_NEEDED,
4170                            null, options);
4171            } catch (RemoteException e) {
4172                // Empty
4173            }
4174
4175            Instrumentation.checkStartActivityResult(result, intent);
4176
4177            if (requestCode >= 0) {
4178                // If this start is requesting a result, we can avoid making
4179                // the activity visible until the result is received.  Setting
4180                // this code during onCreate(Bundle savedInstanceState) or onResume() will keep the
4181                // activity hidden during this time, to avoid flickering.
4182                // This can only be done when a result is requested because
4183                // that guarantees we will get information back when the
4184                // activity is finished, no matter what happens to it.
4185                mStartedActivity = true;
4186            }
4187            return result != ActivityManager.START_RETURN_INTENT_TO_CALLER;
4188        }
4189
4190        throw new UnsupportedOperationException(
4191            "startActivityIfNeeded can only be called from a top-level activity");
4192    }
4193
4194    /**
4195     * Same as calling {@link #startNextMatchingActivity(Intent, Bundle)} with
4196     * no options.
4197     *
4198     * @param intent The intent to dispatch to the next activity.  For
4199     * correct behavior, this must be the same as the Intent that started
4200     * your own activity; the only changes you can make are to the extras
4201     * inside of it.
4202     *
4203     * @return Returns a boolean indicating whether there was another Activity
4204     * to start: true if there was a next activity to start, false if there
4205     * wasn't.  In general, if true is returned you will then want to call
4206     * finish() on yourself.
4207     */
4208    public boolean startNextMatchingActivity(@NonNull Intent intent) {
4209        return startNextMatchingActivity(intent, null);
4210    }
4211
4212    /**
4213     * Special version of starting an activity, for use when you are replacing
4214     * other activity components.  You can use this to hand the Intent off
4215     * to the next Activity that can handle it.  You typically call this in
4216     * {@link #onCreate} with the Intent returned by {@link #getIntent}.
4217     *
4218     * @param intent The intent to dispatch to the next activity.  For
4219     * correct behavior, this must be the same as the Intent that started
4220     * your own activity; the only changes you can make are to the extras
4221     * inside of it.
4222     * @param options Additional options for how the Activity should be started.
4223     * See {@link android.content.Context#startActivity(Intent, Bundle)
4224     * Context.startActivity(Intent, Bundle)} for more details.
4225     *
4226     * @return Returns a boolean indicating whether there was another Activity
4227     * to start: true if there was a next activity to start, false if there
4228     * wasn't.  In general, if true is returned you will then want to call
4229     * finish() on yourself.
4230     */
4231    public boolean startNextMatchingActivity(@NonNull Intent intent, @Nullable Bundle options) {
4232        if (mParent == null) {
4233            try {
4234                intent.migrateExtraStreamToClipData();
4235                intent.prepareToLeaveProcess();
4236                return ActivityManagerNative.getDefault()
4237                    .startNextMatchingActivity(mToken, intent, options);
4238            } catch (RemoteException e) {
4239                // Empty
4240            }
4241            return false;
4242        }
4243
4244        throw new UnsupportedOperationException(
4245            "startNextMatchingActivity can only be called from a top-level activity");
4246    }
4247
4248    /**
4249     * Same as calling {@link #startActivityFromChild(Activity, Intent, int, Bundle)}
4250     * with no options.
4251     *
4252     * @param child The activity making the call.
4253     * @param intent The intent to start.
4254     * @param requestCode Reply request code.  < 0 if reply is not requested.
4255     *
4256     * @throws android.content.ActivityNotFoundException
4257     *
4258     * @see #startActivity
4259     * @see #startActivityForResult
4260     */
4261    public void startActivityFromChild(@NonNull Activity child, Intent intent,
4262            int requestCode) {
4263        startActivityFromChild(child, intent, requestCode, null);
4264    }
4265
4266    /**
4267     * This is called when a child activity of this one calls its
4268     * {@link #startActivity} or {@link #startActivityForResult} method.
4269     *
4270     * <p>This method throws {@link android.content.ActivityNotFoundException}
4271     * if there was no Activity found to run the given Intent.
4272     *
4273     * @param child The activity making the call.
4274     * @param intent The intent to start.
4275     * @param requestCode Reply request code.  < 0 if reply is not requested.
4276     * @param options Additional options for how the Activity should be started.
4277     * See {@link android.content.Context#startActivity(Intent, Bundle)
4278     * Context.startActivity(Intent, Bundle)} for more details.
4279     *
4280     * @throws android.content.ActivityNotFoundException
4281     *
4282     * @see #startActivity
4283     * @see #startActivityForResult
4284     */
4285    public void startActivityFromChild(@NonNull Activity child, Intent intent,
4286            int requestCode, @Nullable Bundle options) {
4287        Instrumentation.ActivityResult ar =
4288            mInstrumentation.execStartActivity(
4289                this, mMainThread.getApplicationThread(), mToken, child,
4290                intent, requestCode, options);
4291        if (ar != null) {
4292            mMainThread.sendActivityResult(
4293                mToken, child.mEmbeddedID, requestCode,
4294                ar.getResultCode(), ar.getResultData());
4295        }
4296    }
4297
4298    /**
4299     * Same as calling {@link #startActivityFromFragment(Fragment, Intent, int, Bundle)}
4300     * with no options.
4301     *
4302     * @param fragment The fragment making the call.
4303     * @param intent The intent to start.
4304     * @param requestCode Reply request code.  < 0 if reply is not requested.
4305     *
4306     * @throws android.content.ActivityNotFoundException
4307     *
4308     * @see Fragment#startActivity
4309     * @see Fragment#startActivityForResult
4310     */
4311    public void startActivityFromFragment(@NonNull Fragment fragment, Intent intent,
4312            int requestCode) {
4313        startActivityFromFragment(fragment, intent, requestCode, null);
4314    }
4315
4316    /**
4317     * This is called when a Fragment in this activity calls its
4318     * {@link Fragment#startActivity} or {@link Fragment#startActivityForResult}
4319     * method.
4320     *
4321     * <p>This method throws {@link android.content.ActivityNotFoundException}
4322     * if there was no Activity found to run the given Intent.
4323     *
4324     * @param fragment The fragment making the call.
4325     * @param intent The intent to start.
4326     * @param requestCode Reply request code.  < 0 if reply is not requested.
4327     * @param options Additional options for how the Activity should be started.
4328     * See {@link android.content.Context#startActivity(Intent, Bundle)
4329     * Context.startActivity(Intent, Bundle)} for more details.
4330     *
4331     * @throws android.content.ActivityNotFoundException
4332     *
4333     * @see Fragment#startActivity
4334     * @see Fragment#startActivityForResult
4335     */
4336    public void startActivityFromFragment(@NonNull Fragment fragment, Intent intent,
4337            int requestCode, @Nullable Bundle options) {
4338        if (options != null) {
4339            mActivityTransitionState.startExitOutTransition(this, options);
4340        }
4341        Instrumentation.ActivityResult ar =
4342            mInstrumentation.execStartActivity(
4343                this, mMainThread.getApplicationThread(), mToken, fragment,
4344                intent, requestCode, options);
4345        if (ar != null) {
4346            mMainThread.sendActivityResult(
4347                mToken, fragment.mWho, requestCode,
4348                ar.getResultCode(), ar.getResultData());
4349        }
4350    }
4351
4352    /**
4353     * Same as calling {@link #startIntentSenderFromChild(Activity, IntentSender,
4354     * int, Intent, int, int, int, Bundle)} with no options.
4355     */
4356    public void startIntentSenderFromChild(Activity child, IntentSender intent,
4357            int requestCode, Intent fillInIntent, int flagsMask, int flagsValues,
4358            int extraFlags)
4359            throws IntentSender.SendIntentException {
4360        startIntentSenderFromChild(child, intent, requestCode, fillInIntent,
4361                flagsMask, flagsValues, extraFlags, null);
4362    }
4363
4364    /**
4365     * Like {@link #startActivityFromChild(Activity, Intent, int)}, but
4366     * taking a IntentSender; see
4367     * {@link #startIntentSenderForResult(IntentSender, int, Intent, int, int, int)}
4368     * for more information.
4369     */
4370    public void startIntentSenderFromChild(Activity child, IntentSender intent,
4371            int requestCode, Intent fillInIntent, int flagsMask, int flagsValues,
4372            int extraFlags, @Nullable Bundle options)
4373            throws IntentSender.SendIntentException {
4374        startIntentSenderForResultInner(intent, requestCode, fillInIntent,
4375                flagsMask, flagsValues, child, options);
4376    }
4377
4378    /**
4379     * Call immediately after one of the flavors of {@link #startActivity(Intent)}
4380     * or {@link #finish} to specify an explicit transition animation to
4381     * perform next.
4382     *
4383     * <p>As of {@link android.os.Build.VERSION_CODES#JELLY_BEAN} an alternative
4384     * to using this with starting activities is to supply the desired animation
4385     * information through a {@link ActivityOptions} bundle to
4386     * {@link #startActivity(Intent, Bundle) or a related function.  This allows
4387     * you to specify a custom animation even when starting an activity from
4388     * outside the context of the current top activity.
4389     *
4390     * @param enterAnim A resource ID of the animation resource to use for
4391     * the incoming activity.  Use 0 for no animation.
4392     * @param exitAnim A resource ID of the animation resource to use for
4393     * the outgoing activity.  Use 0 for no animation.
4394     */
4395    public void overridePendingTransition(int enterAnim, int exitAnim) {
4396        try {
4397            ActivityManagerNative.getDefault().overridePendingTransition(
4398                    mToken, getPackageName(), enterAnim, exitAnim);
4399        } catch (RemoteException e) {
4400        }
4401    }
4402
4403    /**
4404     * Call this to set the result that your activity will return to its
4405     * caller.
4406     *
4407     * @param resultCode The result code to propagate back to the originating
4408     *                   activity, often RESULT_CANCELED or RESULT_OK
4409     *
4410     * @see #RESULT_CANCELED
4411     * @see #RESULT_OK
4412     * @see #RESULT_FIRST_USER
4413     * @see #setResult(int, Intent)
4414     */
4415    public final void setResult(int resultCode) {
4416        synchronized (this) {
4417            mResultCode = resultCode;
4418            mResultData = null;
4419        }
4420    }
4421
4422    /**
4423     * Call this to set the result that your activity will return to its
4424     * caller.
4425     *
4426     * <p>As of {@link android.os.Build.VERSION_CODES#GINGERBREAD}, the Intent
4427     * you supply here can have {@link Intent#FLAG_GRANT_READ_URI_PERMISSION
4428     * Intent.FLAG_GRANT_READ_URI_PERMISSION} and/or {@link Intent#FLAG_GRANT_WRITE_URI_PERMISSION
4429     * Intent.FLAG_GRANT_WRITE_URI_PERMISSION} set.  This will grant the
4430     * Activity receiving the result access to the specific URIs in the Intent.
4431     * Access will remain until the Activity has finished (it will remain across the hosting
4432     * process being killed and other temporary destruction) and will be added
4433     * to any existing set of URI permissions it already holds.
4434     *
4435     * @param resultCode The result code to propagate back to the originating
4436     *                   activity, often RESULT_CANCELED or RESULT_OK
4437     * @param data The data to propagate back to the originating activity.
4438     *
4439     * @see #RESULT_CANCELED
4440     * @see #RESULT_OK
4441     * @see #RESULT_FIRST_USER
4442     * @see #setResult(int)
4443     */
4444    public final void setResult(int resultCode, Intent data) {
4445        synchronized (this) {
4446            mResultCode = resultCode;
4447            mResultData = data;
4448        }
4449    }
4450
4451    /**
4452     * Return information about who launched this activity.  If the launching Intent
4453     * contains an {@link android.content.Intent#EXTRA_REFERRER Intent.EXTRA_REFERRER},
4454     * that will be returned as-is; otherwise, if known, an
4455     * {@link Intent#URI_ANDROID_APP_SCHEME android-app:} referrer URI containing the
4456     * package name that started the Intent will be returned.  This may return null if no
4457     * referrer can be identified -- it is neither explicitly specified, nor is it known which
4458     * application package was involved.
4459     *
4460     * <p>If called while inside the handling of {@link #onNewIntent}, this function will
4461     * return the referrer that submitted that new intent to the activity.  Otherwise, it
4462     * always returns the referrer of the original Intent.</p>
4463     *
4464     * <p>Note that this is <em>not</em> a security feature -- you can not trust the
4465     * referrer information, applications can spoof it.</p>
4466     */
4467    @Nullable
4468    public Uri getReferrer() {
4469        Intent intent = getIntent();
4470        Uri referrer = intent.getParcelableExtra(Intent.EXTRA_REFERRER);
4471        if (referrer != null) {
4472            return referrer;
4473        }
4474        String referrerName = intent.getStringExtra(Intent.EXTRA_REFERRER_NAME);
4475        if (referrerName != null) {
4476            return Uri.parse(referrerName);
4477        }
4478        if (mReferrer != null) {
4479            return new Uri.Builder().scheme("android-app").authority(mReferrer).build();
4480        }
4481        return null;
4482    }
4483
4484    /**
4485     * Return the name of the package that invoked this activity.  This is who
4486     * the data in {@link #setResult setResult()} will be sent to.  You can
4487     * use this information to validate that the recipient is allowed to
4488     * receive the data.
4489     *
4490     * <p class="note">Note: if the calling activity is not expecting a result (that is it
4491     * did not use the {@link #startActivityForResult}
4492     * form that includes a request code), then the calling package will be
4493     * null.</p>
4494     *
4495     * <p class="note">Note: prior to {@link android.os.Build.VERSION_CODES#JELLY_BEAN_MR2},
4496     * the result from this method was unstable.  If the process hosting the calling
4497     * package was no longer running, it would return null instead of the proper package
4498     * name.  You can use {@link #getCallingActivity()} and retrieve the package name
4499     * from that instead.</p>
4500     *
4501     * @return The package of the activity that will receive your
4502     *         reply, or null if none.
4503     */
4504    @Nullable
4505    public String getCallingPackage() {
4506        try {
4507            return ActivityManagerNative.getDefault().getCallingPackage(mToken);
4508        } catch (RemoteException e) {
4509            return null;
4510        }
4511    }
4512
4513    /**
4514     * Return the name of the activity that invoked this activity.  This is
4515     * who the data in {@link #setResult setResult()} will be sent to.  You
4516     * can use this information to validate that the recipient is allowed to
4517     * receive the data.
4518     *
4519     * <p class="note">Note: if the calling activity is not expecting a result (that is it
4520     * did not use the {@link #startActivityForResult}
4521     * form that includes a request code), then the calling package will be
4522     * null.
4523     *
4524     * @return The ComponentName of the activity that will receive your
4525     *         reply, or null if none.
4526     */
4527    @Nullable
4528    public ComponentName getCallingActivity() {
4529        try {
4530            return ActivityManagerNative.getDefault().getCallingActivity(mToken);
4531        } catch (RemoteException e) {
4532            return null;
4533        }
4534    }
4535
4536    /**
4537     * Control whether this activity's main window is visible.  This is intended
4538     * only for the special case of an activity that is not going to show a
4539     * UI itself, but can't just finish prior to onResume() because it needs
4540     * to wait for a service binding or such.  Setting this to false allows
4541     * you to prevent your UI from being shown during that time.
4542     *
4543     * <p>The default value for this is taken from the
4544     * {@link android.R.attr#windowNoDisplay} attribute of the activity's theme.
4545     */
4546    public void setVisible(boolean visible) {
4547        if (mVisibleFromClient != visible) {
4548            mVisibleFromClient = visible;
4549            if (mVisibleFromServer) {
4550                if (visible) makeVisible();
4551                else mDecor.setVisibility(View.INVISIBLE);
4552            }
4553        }
4554    }
4555
4556    void makeVisible() {
4557        if (!mWindowAdded) {
4558            ViewManager wm = getWindowManager();
4559            wm.addView(mDecor, getWindow().getAttributes());
4560            mWindowAdded = true;
4561        }
4562        mDecor.setVisibility(View.VISIBLE);
4563    }
4564
4565    /**
4566     * Check to see whether this activity is in the process of finishing,
4567     * either because you called {@link #finish} on it or someone else
4568     * has requested that it finished.  This is often used in
4569     * {@link #onPause} to determine whether the activity is simply pausing or
4570     * completely finishing.
4571     *
4572     * @return If the activity is finishing, returns true; else returns false.
4573     *
4574     * @see #finish
4575     */
4576    public boolean isFinishing() {
4577        return mFinished;
4578    }
4579
4580    /**
4581     * Returns true if the final {@link #onDestroy()} call has been made
4582     * on the Activity, so this instance is now dead.
4583     */
4584    public boolean isDestroyed() {
4585        return mDestroyed;
4586    }
4587
4588    /**
4589     * Check to see whether this activity is in the process of being destroyed in order to be
4590     * recreated with a new configuration. This is often used in
4591     * {@link #onStop} to determine whether the state needs to be cleaned up or will be passed
4592     * on to the next instance of the activity via {@link #onRetainNonConfigurationInstance()}.
4593     *
4594     * @return If the activity is being torn down in order to be recreated with a new configuration,
4595     * returns true; else returns false.
4596     */
4597    public boolean isChangingConfigurations() {
4598        return mChangingConfigurations;
4599    }
4600
4601    /**
4602     * Cause this Activity to be recreated with a new instance.  This results
4603     * in essentially the same flow as when the Activity is created due to
4604     * a configuration change -- the current instance will go through its
4605     * lifecycle to {@link #onDestroy} and a new instance then created after it.
4606     */
4607    public void recreate() {
4608        if (mParent != null) {
4609            throw new IllegalStateException("Can only be called on top-level activity");
4610        }
4611        if (Looper.myLooper() != mMainThread.getLooper()) {
4612            throw new IllegalStateException("Must be called from main thread");
4613        }
4614        mMainThread.requestRelaunchActivity(mToken, null, null, 0, false, null, false);
4615    }
4616
4617    /**
4618     * Finishes the current activity and specifies whether to remove the task associated with this
4619     * activity.
4620     */
4621    private void finish(boolean finishTask) {
4622        if (mParent == null) {
4623            int resultCode;
4624            Intent resultData;
4625            synchronized (this) {
4626                resultCode = mResultCode;
4627                resultData = mResultData;
4628            }
4629            if (false) Log.v(TAG, "Finishing self: token=" + mToken);
4630            try {
4631                if (resultData != null) {
4632                    resultData.prepareToLeaveProcess();
4633                }
4634                if (ActivityManagerNative.getDefault()
4635                        .finishActivity(mToken, resultCode, resultData, finishTask)) {
4636                    mFinished = true;
4637                }
4638            } catch (RemoteException e) {
4639                // Empty
4640            }
4641        } else {
4642            mParent.finishFromChild(this);
4643        }
4644    }
4645
4646    /**
4647     * Call this when your activity is done and should be closed.  The
4648     * ActivityResult is propagated back to whoever launched you via
4649     * onActivityResult().
4650     */
4651    public void finish() {
4652        finish(false);
4653    }
4654
4655    /**
4656     * Finish this activity as well as all activities immediately below it
4657     * in the current task that have the same affinity.  This is typically
4658     * used when an application can be launched on to another task (such as
4659     * from an ACTION_VIEW of a content type it understands) and the user
4660     * has used the up navigation to switch out of the current task and in
4661     * to its own task.  In this case, if the user has navigated down into
4662     * any other activities of the second application, all of those should
4663     * be removed from the original task as part of the task switch.
4664     *
4665     * <p>Note that this finish does <em>not</em> allow you to deliver results
4666     * to the previous activity, and an exception will be thrown if you are trying
4667     * to do so.</p>
4668     */
4669    public void finishAffinity() {
4670        if (mParent != null) {
4671            throw new IllegalStateException("Can not be called from an embedded activity");
4672        }
4673        if (mResultCode != RESULT_CANCELED || mResultData != null) {
4674            throw new IllegalStateException("Can not be called to deliver a result");
4675        }
4676        try {
4677            if (ActivityManagerNative.getDefault().finishActivityAffinity(mToken)) {
4678                mFinished = true;
4679            }
4680        } catch (RemoteException e) {
4681            // Empty
4682        }
4683    }
4684
4685    /**
4686     * This is called when a child activity of this one calls its
4687     * {@link #finish} method.  The default implementation simply calls
4688     * finish() on this activity (the parent), finishing the entire group.
4689     *
4690     * @param child The activity making the call.
4691     *
4692     * @see #finish
4693     */
4694    public void finishFromChild(Activity child) {
4695        finish();
4696    }
4697
4698    /**
4699     * Reverses the Activity Scene entry Transition and triggers the calling Activity
4700     * to reverse its exit Transition. When the exit Transition completes,
4701     * {@link #finish()} is called. If no entry Transition was used, finish() is called
4702     * immediately and the Activity exit Transition is run.
4703     * @see android.app.ActivityOptions#makeSceneTransitionAnimation(Activity, android.util.Pair[])
4704     */
4705    public void finishAfterTransition() {
4706        if (!mActivityTransitionState.startExitBackTransition(this)) {
4707            finish();
4708        }
4709    }
4710
4711    /**
4712     * Force finish another activity that you had previously started with
4713     * {@link #startActivityForResult}.
4714     *
4715     * @param requestCode The request code of the activity that you had
4716     *                    given to startActivityForResult().  If there are multiple
4717     *                    activities started with this request code, they
4718     *                    will all be finished.
4719     */
4720    public void finishActivity(int requestCode) {
4721        if (mParent == null) {
4722            try {
4723                ActivityManagerNative.getDefault()
4724                    .finishSubActivity(mToken, mEmbeddedID, requestCode);
4725            } catch (RemoteException e) {
4726                // Empty
4727            }
4728        } else {
4729            mParent.finishActivityFromChild(this, requestCode);
4730        }
4731    }
4732
4733    /**
4734     * This is called when a child activity of this one calls its
4735     * finishActivity().
4736     *
4737     * @param child The activity making the call.
4738     * @param requestCode Request code that had been used to start the
4739     *                    activity.
4740     */
4741    public void finishActivityFromChild(@NonNull Activity child, int requestCode) {
4742        try {
4743            ActivityManagerNative.getDefault()
4744                .finishSubActivity(mToken, child.mEmbeddedID, requestCode);
4745        } catch (RemoteException e) {
4746            // Empty
4747        }
4748    }
4749
4750    /**
4751     * Call this when your activity is done and should be closed and the task should be completely
4752     * removed as a part of finishing the Activity.
4753     */
4754    public void finishAndRemoveTask() {
4755        finish(true);
4756    }
4757
4758    /**
4759     * Ask that the local app instance of this activity be released to free up its memory.
4760     * This is asking for the activity to be destroyed, but does <b>not</b> finish the activity --
4761     * a new instance of the activity will later be re-created if needed due to the user
4762     * navigating back to it.
4763     *
4764     * @return Returns true if the activity was in a state that it has started the process
4765     * of destroying its current instance; returns false if for any reason this could not
4766     * be done: it is currently visible to the user, it is already being destroyed, it is
4767     * being finished, it hasn't yet saved its state, etc.
4768     */
4769    public boolean releaseInstance() {
4770        try {
4771            return ActivityManagerNative.getDefault().releaseActivityInstance(mToken);
4772        } catch (RemoteException e) {
4773            // Empty
4774        }
4775        return false;
4776    }
4777
4778    /**
4779     * Called when an activity you launched exits, giving you the requestCode
4780     * you started it with, the resultCode it returned, and any additional
4781     * data from it.  The <var>resultCode</var> will be
4782     * {@link #RESULT_CANCELED} if the activity explicitly returned that,
4783     * didn't return any result, or crashed during its operation.
4784     *
4785     * <p>You will receive this call immediately before onResume() when your
4786     * activity is re-starting.
4787     *
4788     * @param requestCode The integer request code originally supplied to
4789     *                    startActivityForResult(), allowing you to identify who this
4790     *                    result came from.
4791     * @param resultCode The integer result code returned by the child activity
4792     *                   through its setResult().
4793     * @param data An Intent, which can return result data to the caller
4794     *               (various data can be attached to Intent "extras").
4795     *
4796     * @see #startActivityForResult
4797     * @see #createPendingResult
4798     * @see #setResult(int)
4799     */
4800    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
4801    }
4802
4803    /**
4804     * Called when an activity you launched with an activity transition exposes this
4805     * Activity through a returning activity transition, giving you the resultCode
4806     * and any additional data from it. This method will only be called if the activity
4807     * set a result code other than {@link #RESULT_CANCELED} and it supports activity
4808     * transitions with {@link Window#FEATURE_ACTIVITY_TRANSITIONS}.
4809     *
4810     * <p>The purpose of this function is to let the called Activity send a hint about
4811     * its state so that this underlying Activity can prepare to be exposed. A call to
4812     * this method does not guarantee that the called Activity has or will be exiting soon.
4813     * It only indicates that it will expose this Activity's Window and it has
4814     * some data to pass to prepare it.</p>
4815     *
4816     * @param resultCode The integer result code returned by the child activity
4817     *                   through its setResult().
4818     * @param data An Intent, which can return result data to the caller
4819     *               (various data can be attached to Intent "extras").
4820     */
4821    public void onActivityReenter(int resultCode, Intent data) {
4822    }
4823
4824    /**
4825     * Create a new PendingIntent object which you can hand to others
4826     * for them to use to send result data back to your
4827     * {@link #onActivityResult} callback.  The created object will be either
4828     * one-shot (becoming invalid after a result is sent back) or multiple
4829     * (allowing any number of results to be sent through it).
4830     *
4831     * @param requestCode Private request code for the sender that will be
4832     * associated with the result data when it is returned.  The sender can not
4833     * modify this value, allowing you to identify incoming results.
4834     * @param data Default data to supply in the result, which may be modified
4835     * by the sender.
4836     * @param flags May be {@link PendingIntent#FLAG_ONE_SHOT PendingIntent.FLAG_ONE_SHOT},
4837     * {@link PendingIntent#FLAG_NO_CREATE PendingIntent.FLAG_NO_CREATE},
4838     * {@link PendingIntent#FLAG_CANCEL_CURRENT PendingIntent.FLAG_CANCEL_CURRENT},
4839     * {@link PendingIntent#FLAG_UPDATE_CURRENT PendingIntent.FLAG_UPDATE_CURRENT},
4840     * or any of the flags as supported by
4841     * {@link Intent#fillIn Intent.fillIn()} to control which unspecified parts
4842     * of the intent that can be supplied when the actual send happens.
4843     *
4844     * @return Returns an existing or new PendingIntent matching the given
4845     * parameters.  May return null only if
4846     * {@link PendingIntent#FLAG_NO_CREATE PendingIntent.FLAG_NO_CREATE} has been
4847     * supplied.
4848     *
4849     * @see PendingIntent
4850     */
4851    public PendingIntent createPendingResult(int requestCode, @NonNull Intent data,
4852            @PendingIntent.Flags int flags) {
4853        String packageName = getPackageName();
4854        try {
4855            data.prepareToLeaveProcess();
4856            IIntentSender target =
4857                ActivityManagerNative.getDefault().getIntentSender(
4858                        ActivityManager.INTENT_SENDER_ACTIVITY_RESULT, packageName,
4859                        mParent == null ? mToken : mParent.mToken,
4860                        mEmbeddedID, requestCode, new Intent[] { data }, null, flags, null,
4861                        UserHandle.myUserId());
4862            return target != null ? new PendingIntent(target) : null;
4863        } catch (RemoteException e) {
4864            // Empty
4865        }
4866        return null;
4867    }
4868
4869    /**
4870     * Change the desired orientation of this activity.  If the activity
4871     * is currently in the foreground or otherwise impacting the screen
4872     * orientation, the screen will immediately be changed (possibly causing
4873     * the activity to be restarted). Otherwise, this will be used the next
4874     * time the activity is visible.
4875     *
4876     * @param requestedOrientation An orientation constant as used in
4877     * {@link ActivityInfo#screenOrientation ActivityInfo.screenOrientation}.
4878     */
4879    public void setRequestedOrientation(@ActivityInfo.ScreenOrientation int requestedOrientation) {
4880        if (mParent == null) {
4881            try {
4882                ActivityManagerNative.getDefault().setRequestedOrientation(
4883                        mToken, requestedOrientation);
4884            } catch (RemoteException e) {
4885                // Empty
4886            }
4887        } else {
4888            mParent.setRequestedOrientation(requestedOrientation);
4889        }
4890    }
4891
4892    /**
4893     * Return the current requested orientation of the activity.  This will
4894     * either be the orientation requested in its component's manifest, or
4895     * the last requested orientation given to
4896     * {@link #setRequestedOrientation(int)}.
4897     *
4898     * @return Returns an orientation constant as used in
4899     * {@link ActivityInfo#screenOrientation ActivityInfo.screenOrientation}.
4900     */
4901    @ActivityInfo.ScreenOrientation
4902    public int getRequestedOrientation() {
4903        if (mParent == null) {
4904            try {
4905                return ActivityManagerNative.getDefault()
4906                        .getRequestedOrientation(mToken);
4907            } catch (RemoteException e) {
4908                // Empty
4909            }
4910        } else {
4911            return mParent.getRequestedOrientation();
4912        }
4913        return ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED;
4914    }
4915
4916    /**
4917     * Return the identifier of the task this activity is in.  This identifier
4918     * will remain the same for the lifetime of the activity.
4919     *
4920     * @return Task identifier, an opaque integer.
4921     */
4922    public int getTaskId() {
4923        try {
4924            return ActivityManagerNative.getDefault()
4925                .getTaskForActivity(mToken, false);
4926        } catch (RemoteException e) {
4927            return -1;
4928        }
4929    }
4930
4931    /**
4932     * Return whether this activity is the root of a task.  The root is the
4933     * first activity in a task.
4934     *
4935     * @return True if this is the root activity, else false.
4936     */
4937    public boolean isTaskRoot() {
4938        try {
4939            return ActivityManagerNative.getDefault()
4940                .getTaskForActivity(mToken, true) >= 0;
4941        } catch (RemoteException e) {
4942            return false;
4943        }
4944    }
4945
4946    /**
4947     * Move the task containing this activity to the back of the activity
4948     * stack.  The activity's order within the task is unchanged.
4949     *
4950     * @param nonRoot If false then this only works if the activity is the root
4951     *                of a task; if true it will work for any activity in
4952     *                a task.
4953     *
4954     * @return If the task was moved (or it was already at the
4955     *         back) true is returned, else false.
4956     */
4957    public boolean moveTaskToBack(boolean nonRoot) {
4958        try {
4959            return ActivityManagerNative.getDefault().moveActivityTaskToBack(
4960                    mToken, nonRoot);
4961        } catch (RemoteException e) {
4962            // Empty
4963        }
4964        return false;
4965    }
4966
4967    /**
4968     * Returns class name for this activity with the package prefix removed.
4969     * This is the default name used to read and write settings.
4970     *
4971     * @return The local class name.
4972     */
4973    @NonNull
4974    public String getLocalClassName() {
4975        final String pkg = getPackageName();
4976        final String cls = mComponent.getClassName();
4977        int packageLen = pkg.length();
4978        if (!cls.startsWith(pkg) || cls.length() <= packageLen
4979                || cls.charAt(packageLen) != '.') {
4980            return cls;
4981        }
4982        return cls.substring(packageLen+1);
4983    }
4984
4985    /**
4986     * Returns complete component name of this activity.
4987     *
4988     * @return Returns the complete component name for this activity
4989     */
4990    public ComponentName getComponentName()
4991    {
4992        return mComponent;
4993    }
4994
4995    /**
4996     * Retrieve a {@link SharedPreferences} object for accessing preferences
4997     * that are private to this activity.  This simply calls the underlying
4998     * {@link #getSharedPreferences(String, int)} method by passing in this activity's
4999     * class name as the preferences name.
5000     *
5001     * @param mode Operating mode.  Use {@link #MODE_PRIVATE} for the default
5002     *             operation, {@link #MODE_WORLD_READABLE} and
5003     *             {@link #MODE_WORLD_WRITEABLE} to control permissions.
5004     *
5005     * @return Returns the single SharedPreferences instance that can be used
5006     *         to retrieve and modify the preference values.
5007     */
5008    public SharedPreferences getPreferences(int mode) {
5009        return getSharedPreferences(getLocalClassName(), mode);
5010    }
5011
5012    private void ensureSearchManager() {
5013        if (mSearchManager != null) {
5014            return;
5015        }
5016
5017        mSearchManager = new SearchManager(this, null);
5018    }
5019
5020    @Override
5021    public Object getSystemService(@ServiceName @NonNull String name) {
5022        if (getBaseContext() == null) {
5023            throw new IllegalStateException(
5024                    "System services not available to Activities before onCreate()");
5025        }
5026
5027        if (WINDOW_SERVICE.equals(name)) {
5028            return mWindowManager;
5029        } else if (SEARCH_SERVICE.equals(name)) {
5030            ensureSearchManager();
5031            return mSearchManager;
5032        }
5033        return super.getSystemService(name);
5034    }
5035
5036    /**
5037     * Change the title associated with this activity.  If this is a
5038     * top-level activity, the title for its window will change.  If it
5039     * is an embedded activity, the parent can do whatever it wants
5040     * with it.
5041     */
5042    public void setTitle(CharSequence title) {
5043        mTitle = title;
5044        onTitleChanged(title, mTitleColor);
5045
5046        if (mParent != null) {
5047            mParent.onChildTitleChanged(this, title);
5048        }
5049    }
5050
5051    /**
5052     * Change the title associated with this activity.  If this is a
5053     * top-level activity, the title for its window will change.  If it
5054     * is an embedded activity, the parent can do whatever it wants
5055     * with it.
5056     */
5057    public void setTitle(int titleId) {
5058        setTitle(getText(titleId));
5059    }
5060
5061    /**
5062     * Change the color of the title associated with this activity.
5063     * <p>
5064     * This method is deprecated starting in API Level 11 and replaced by action
5065     * bar styles. For information on styling the Action Bar, read the <a
5066     * href="{@docRoot} guide/topics/ui/actionbar.html">Action Bar</a> developer
5067     * guide.
5068     *
5069     * @deprecated Use action bar styles instead.
5070     */
5071    @Deprecated
5072    public void setTitleColor(int textColor) {
5073        mTitleColor = textColor;
5074        onTitleChanged(mTitle, textColor);
5075    }
5076
5077    public final CharSequence getTitle() {
5078        return mTitle;
5079    }
5080
5081    public final int getTitleColor() {
5082        return mTitleColor;
5083    }
5084
5085    protected void onTitleChanged(CharSequence title, int color) {
5086        if (mTitleReady) {
5087            final Window win = getWindow();
5088            if (win != null) {
5089                win.setTitle(title);
5090                if (color != 0) {
5091                    win.setTitleColor(color);
5092                }
5093            }
5094            if (mActionBar != null) {
5095                mActionBar.setWindowTitle(title);
5096            }
5097        }
5098    }
5099
5100    protected void onChildTitleChanged(Activity childActivity, CharSequence title) {
5101    }
5102
5103    /**
5104     * Sets information describing the task with this activity for presentation inside the Recents
5105     * System UI. When {@link ActivityManager#getRecentTasks} is called, the activities of each task
5106     * are traversed in order from the topmost activity to the bottommost. The traversal continues
5107     * for each property until a suitable value is found. For each task the taskDescription will be
5108     * returned in {@link android.app.ActivityManager.TaskDescription}.
5109     *
5110     * @see ActivityManager#getRecentTasks
5111     * @see android.app.ActivityManager.TaskDescription
5112     *
5113     * @param taskDescription The TaskDescription properties that describe the task with this activity
5114     */
5115    public void setTaskDescription(ActivityManager.TaskDescription taskDescription) {
5116        ActivityManager.TaskDescription td;
5117        // Scale the icon down to something reasonable if it is provided
5118        if (taskDescription.getIconFilename() == null && taskDescription.getIcon() != null) {
5119            final int size = ActivityManager.getLauncherLargeIconSizeInner(this);
5120            final Bitmap icon = Bitmap.createScaledBitmap(taskDescription.getIcon(), size, size, true);
5121            td = new ActivityManager.TaskDescription(taskDescription.getLabel(), icon,
5122                    taskDescription.getPrimaryColor());
5123        } else {
5124            td = taskDescription;
5125        }
5126        try {
5127            ActivityManagerNative.getDefault().setTaskDescription(mToken, td);
5128        } catch (RemoteException e) {
5129        }
5130    }
5131
5132    /**
5133     * Sets the visibility of the progress bar in the title.
5134     * <p>
5135     * In order for the progress bar to be shown, the feature must be requested
5136     * via {@link #requestWindowFeature(int)}.
5137     *
5138     * @param visible Whether to show the progress bars in the title.
5139     */
5140    public final void setProgressBarVisibility(boolean visible) {
5141        getWindow().setFeatureInt(Window.FEATURE_PROGRESS, visible ? Window.PROGRESS_VISIBILITY_ON :
5142            Window.PROGRESS_VISIBILITY_OFF);
5143    }
5144
5145    /**
5146     * Sets the visibility of the indeterminate progress bar in the title.
5147     * <p>
5148     * In order for the progress bar to be shown, the feature must be requested
5149     * via {@link #requestWindowFeature(int)}.
5150     *
5151     * @param visible Whether to show the progress bars in the title.
5152     */
5153    public final void setProgressBarIndeterminateVisibility(boolean visible) {
5154        getWindow().setFeatureInt(Window.FEATURE_INDETERMINATE_PROGRESS,
5155                visible ? Window.PROGRESS_VISIBILITY_ON : Window.PROGRESS_VISIBILITY_OFF);
5156    }
5157
5158    /**
5159     * Sets whether the horizontal progress bar in the title should be indeterminate (the circular
5160     * is always indeterminate).
5161     * <p>
5162     * In order for the progress bar to be shown, the feature must be requested
5163     * via {@link #requestWindowFeature(int)}.
5164     *
5165     * @param indeterminate Whether the horizontal progress bar should be indeterminate.
5166     */
5167    public final void setProgressBarIndeterminate(boolean indeterminate) {
5168        getWindow().setFeatureInt(Window.FEATURE_PROGRESS,
5169                indeterminate ? Window.PROGRESS_INDETERMINATE_ON
5170                        : Window.PROGRESS_INDETERMINATE_OFF);
5171    }
5172
5173    /**
5174     * Sets the progress for the progress bars in the title.
5175     * <p>
5176     * In order for the progress bar to be shown, the feature must be requested
5177     * via {@link #requestWindowFeature(int)}.
5178     *
5179     * @param progress The progress for the progress bar. Valid ranges are from
5180     *            0 to 10000 (both inclusive). If 10000 is given, the progress
5181     *            bar will be completely filled and will fade out.
5182     */
5183    public final void setProgress(int progress) {
5184        getWindow().setFeatureInt(Window.FEATURE_PROGRESS, progress + Window.PROGRESS_START);
5185    }
5186
5187    /**
5188     * Sets the secondary progress for the progress bar in the title. This
5189     * progress is drawn between the primary progress (set via
5190     * {@link #setProgress(int)} and the background. It can be ideal for media
5191     * scenarios such as showing the buffering progress while the default
5192     * progress shows the play progress.
5193     * <p>
5194     * In order for the progress bar to be shown, the feature must be requested
5195     * via {@link #requestWindowFeature(int)}.
5196     *
5197     * @param secondaryProgress The secondary progress for the progress bar. Valid ranges are from
5198     *            0 to 10000 (both inclusive).
5199     */
5200    public final void setSecondaryProgress(int secondaryProgress) {
5201        getWindow().setFeatureInt(Window.FEATURE_PROGRESS,
5202                secondaryProgress + Window.PROGRESS_SECONDARY_START);
5203    }
5204
5205    /**
5206     * Suggests an audio stream whose volume should be changed by the hardware
5207     * volume controls.
5208     * <p>
5209     * The suggested audio stream will be tied to the window of this Activity.
5210     * Volume requests which are received while the Activity is in the
5211     * foreground will affect this stream.
5212     * <p>
5213     * It is not guaranteed that the hardware volume controls will always change
5214     * this stream's volume (for example, if a call is in progress, its stream's
5215     * volume may be changed instead). To reset back to the default, use
5216     * {@link AudioManager#USE_DEFAULT_STREAM_TYPE}.
5217     *
5218     * @param streamType The type of the audio stream whose volume should be
5219     *            changed by the hardware volume controls.
5220     */
5221    public final void setVolumeControlStream(int streamType) {
5222        getWindow().setVolumeControlStream(streamType);
5223    }
5224
5225    /**
5226     * Gets the suggested audio stream whose volume should be changed by the
5227     * hardware volume controls.
5228     *
5229     * @return The suggested audio stream type whose volume should be changed by
5230     *         the hardware volume controls.
5231     * @see #setVolumeControlStream(int)
5232     */
5233    public final int getVolumeControlStream() {
5234        return getWindow().getVolumeControlStream();
5235    }
5236
5237    /**
5238     * Sets a {@link MediaController} to send media keys and volume changes to.
5239     * <p>
5240     * The controller will be tied to the window of this Activity. Media key and
5241     * volume events which are received while the Activity is in the foreground
5242     * will be forwarded to the controller and used to invoke transport controls
5243     * or adjust the volume. This may be used instead of or in addition to
5244     * {@link #setVolumeControlStream} to affect a specific session instead of a
5245     * specific stream.
5246     * <p>
5247     * It is not guaranteed that the hardware volume controls will always change
5248     * this session's volume (for example, if a call is in progress, its
5249     * stream's volume may be changed instead). To reset back to the default use
5250     * null as the controller.
5251     *
5252     * @param controller The controller for the session which should receive
5253     *            media keys and volume changes.
5254     */
5255    public final void setMediaController(MediaController controller) {
5256        getWindow().setMediaController(controller);
5257    }
5258
5259    /**
5260     * Gets the controller which should be receiving media key and volume events
5261     * while this activity is in the foreground.
5262     *
5263     * @return The controller which should receive events.
5264     * @see #setMediaController(android.media.session.MediaController)
5265     */
5266    public final MediaController getMediaController() {
5267        return getWindow().getMediaController();
5268    }
5269
5270    /**
5271     * Runs the specified action on the UI thread. If the current thread is the UI
5272     * thread, then the action is executed immediately. If the current thread is
5273     * not the UI thread, the action is posted to the event queue of the UI thread.
5274     *
5275     * @param action the action to run on the UI thread
5276     */
5277    public final void runOnUiThread(Runnable action) {
5278        if (Thread.currentThread() != mUiThread) {
5279            mHandler.post(action);
5280        } else {
5281            action.run();
5282        }
5283    }
5284
5285    /**
5286     * Standard implementation of
5287     * {@link android.view.LayoutInflater.Factory#onCreateView} used when
5288     * inflating with the LayoutInflater returned by {@link #getSystemService}.
5289     * This implementation does nothing and is for
5290     * pre-{@link android.os.Build.VERSION_CODES#HONEYCOMB} apps.  Newer apps
5291     * should use {@link #onCreateView(View, String, Context, AttributeSet)}.
5292     *
5293     * @see android.view.LayoutInflater#createView
5294     * @see android.view.Window#getLayoutInflater
5295     */
5296    @Nullable
5297    public View onCreateView(String name, Context context, AttributeSet attrs) {
5298        return null;
5299    }
5300
5301    /**
5302     * Standard implementation of
5303     * {@link android.view.LayoutInflater.Factory2#onCreateView(View, String, Context, AttributeSet)}
5304     * used when inflating with the LayoutInflater returned by {@link #getSystemService}.
5305     * This implementation handles <fragment> tags to embed fragments inside
5306     * of the activity.
5307     *
5308     * @see android.view.LayoutInflater#createView
5309     * @see android.view.Window#getLayoutInflater
5310     */
5311    public View onCreateView(View parent, String name, Context context, AttributeSet attrs) {
5312        if (!"fragment".equals(name)) {
5313            return onCreateView(name, context, attrs);
5314        }
5315
5316        return mFragments.onCreateView(parent, name, context, attrs);
5317    }
5318
5319    /**
5320     * Print the Activity's state into the given stream.  This gets invoked if
5321     * you run "adb shell dumpsys activity &lt;activity_component_name&gt;".
5322     *
5323     * @param prefix Desired prefix to prepend at each line of output.
5324     * @param fd The raw file descriptor that the dump is being sent to.
5325     * @param writer The PrintWriter to which you should dump your state.  This will be
5326     * closed for you after you return.
5327     * @param args additional arguments to the dump request.
5328     */
5329    public void dump(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
5330        dumpInner(prefix, fd, writer, args);
5331    }
5332
5333    void dumpInner(String prefix, FileDescriptor fd, PrintWriter writer, String[] args) {
5334        writer.print(prefix); writer.print("Local Activity ");
5335                writer.print(Integer.toHexString(System.identityHashCode(this)));
5336                writer.println(" State:");
5337        String innerPrefix = prefix + "  ";
5338        writer.print(innerPrefix); writer.print("mResumed=");
5339                writer.print(mResumed); writer.print(" mStopped=");
5340                writer.print(mStopped); writer.print(" mFinished=");
5341                writer.println(mFinished);
5342        writer.print(innerPrefix); writer.print("mLoadersStarted=");
5343                writer.println(mLoadersStarted);
5344        writer.print(innerPrefix); writer.print("mChangingConfigurations=");
5345                writer.println(mChangingConfigurations);
5346        writer.print(innerPrefix); writer.print("mCurrentConfig=");
5347                writer.println(mCurrentConfig);
5348
5349        if (mLoaderManager != null) {
5350            writer.print(prefix); writer.print("Loader Manager ");
5351                    writer.print(Integer.toHexString(System.identityHashCode(mLoaderManager)));
5352                    writer.println(":");
5353            mLoaderManager.dump(prefix + "  ", fd, writer, args);
5354        }
5355
5356        mFragments.dump(prefix, fd, writer, args);
5357
5358        if (getWindow() != null &&
5359                getWindow().peekDecorView() != null &&
5360                getWindow().peekDecorView().getViewRootImpl() != null) {
5361            getWindow().peekDecorView().getViewRootImpl().dump(prefix, fd, writer, args);
5362        }
5363
5364        mHandler.getLooper().dump(new PrintWriterPrinter(writer), prefix);
5365    }
5366
5367    /**
5368     * Bit indicating that this activity is "immersive" and should not be
5369     * interrupted by notifications if possible.
5370     *
5371     * This value is initially set by the manifest property
5372     * <code>android:immersive</code> but may be changed at runtime by
5373     * {@link #setImmersive}.
5374     *
5375     * @see #setImmersive(boolean)
5376     * @see android.content.pm.ActivityInfo#FLAG_IMMERSIVE
5377     */
5378    public boolean isImmersive() {
5379        try {
5380            return ActivityManagerNative.getDefault().isImmersive(mToken);
5381        } catch (RemoteException e) {
5382            return false;
5383        }
5384    }
5385
5386    /**
5387     * Indication of whether this is the highest level activity in this task. Can be used to
5388     * determine whether an activity launched by this activity was placed in the same task or
5389     * another task.
5390     *
5391     * @return true if this is the topmost, non-finishing activity in its task.
5392     */
5393    private boolean isTopOfTask() {
5394        try {
5395            return ActivityManagerNative.getDefault().isTopOfTask(mToken);
5396        } catch (RemoteException e) {
5397            return false;
5398        }
5399    }
5400
5401    /**
5402     * Convert a translucent themed Activity {@link android.R.attr#windowIsTranslucent} to a
5403     * fullscreen opaque Activity.
5404     * <p>
5405     * Call this whenever the background of a translucent Activity has changed to become opaque.
5406     * Doing so will allow the {@link android.view.Surface} of the Activity behind to be released.
5407     * <p>
5408     * This call has no effect on non-translucent activities or on activities with the
5409     * {@link android.R.attr#windowIsFloating} attribute.
5410     *
5411     * @see #convertToTranslucent(android.app.Activity.TranslucentConversionListener,
5412     * ActivityOptions)
5413     * @see TranslucentConversionListener
5414     *
5415     * @hide
5416     */
5417    @SystemApi
5418    public void convertFromTranslucent() {
5419        try {
5420            mTranslucentCallback = null;
5421            if (ActivityManagerNative.getDefault().convertFromTranslucent(mToken)) {
5422                WindowManagerGlobal.getInstance().changeCanvasOpacity(mToken, true);
5423            }
5424        } catch (RemoteException e) {
5425            // pass
5426        }
5427    }
5428
5429    /**
5430     * Convert a translucent themed Activity {@link android.R.attr#windowIsTranslucent} back from
5431     * opaque to translucent following a call to {@link #convertFromTranslucent()}.
5432     * <p>
5433     * Calling this allows the Activity behind this one to be seen again. Once all such Activities
5434     * have been redrawn {@link TranslucentConversionListener#onTranslucentConversionComplete} will
5435     * be called indicating that it is safe to make this activity translucent again. Until
5436     * {@link TranslucentConversionListener#onTranslucentConversionComplete} is called the image
5437     * behind the frontmost Activity will be indeterminate.
5438     * <p>
5439     * This call has no effect on non-translucent activities or on activities with the
5440     * {@link android.R.attr#windowIsFloating} attribute.
5441     *
5442     * @param callback the method to call when all visible Activities behind this one have been
5443     * drawn and it is safe to make this Activity translucent again.
5444     * @param options activity options delivered to the activity below this one. The options
5445     * are retrieved using {@link #getActivityOptions}.
5446     * @return <code>true</code> if Window was opaque and will become translucent or
5447     * <code>false</code> if window was translucent and no change needed to be made.
5448     *
5449     * @see #convertFromTranslucent()
5450     * @see TranslucentConversionListener
5451     *
5452     * @hide
5453     */
5454    @SystemApi
5455    public boolean convertToTranslucent(TranslucentConversionListener callback,
5456            ActivityOptions options) {
5457        boolean drawComplete;
5458        try {
5459            mTranslucentCallback = callback;
5460            mChangeCanvasToTranslucent =
5461                    ActivityManagerNative.getDefault().convertToTranslucent(mToken, options);
5462            WindowManagerGlobal.getInstance().changeCanvasOpacity(mToken, false);
5463            drawComplete = true;
5464        } catch (RemoteException e) {
5465            // Make callback return as though it timed out.
5466            mChangeCanvasToTranslucent = false;
5467            drawComplete = false;
5468        }
5469        if (!mChangeCanvasToTranslucent && mTranslucentCallback != null) {
5470            // Window is already translucent.
5471            mTranslucentCallback.onTranslucentConversionComplete(drawComplete);
5472        }
5473        return mChangeCanvasToTranslucent;
5474    }
5475
5476    /** @hide */
5477    void onTranslucentConversionComplete(boolean drawComplete) {
5478        if (mTranslucentCallback != null) {
5479            mTranslucentCallback.onTranslucentConversionComplete(drawComplete);
5480            mTranslucentCallback = null;
5481        }
5482        if (mChangeCanvasToTranslucent) {
5483            WindowManagerGlobal.getInstance().changeCanvasOpacity(mToken, false);
5484        }
5485    }
5486
5487    /** @hide */
5488    public void onNewActivityOptions(ActivityOptions options) {
5489        mActivityTransitionState.setEnterActivityOptions(this, options);
5490        if (!mStopped) {
5491            mActivityTransitionState.enterReady(this);
5492        }
5493    }
5494
5495    /**
5496     * Retrieve the ActivityOptions passed in from the launching activity or passed back
5497     * from an activity launched by this activity in its call to {@link
5498     * #convertToTranslucent(TranslucentConversionListener, ActivityOptions)}
5499     *
5500     * @return The ActivityOptions passed to {@link #convertToTranslucent}.
5501     * @hide
5502     */
5503    ActivityOptions getActivityOptions() {
5504        try {
5505            return ActivityManagerNative.getDefault().getActivityOptions(mToken);
5506        } catch (RemoteException e) {
5507        }
5508        return null;
5509    }
5510
5511    /**
5512     * Activities that want to remain visible behind a translucent activity above them must call
5513     * this method anytime between the start of {@link #onResume()} and the return from
5514     * {@link #onPause()}. If this call is successful then the activity will remain visible after
5515     * {@link #onPause()} is called, and is allowed to continue playing media in the background.
5516     *
5517     * <p>The actions of this call are reset each time that this activity is brought to the
5518     * front. That is, every time {@link #onResume()} is called the activity will be assumed
5519     * to not have requested visible behind. Therefore, if you want this activity to continue to
5520     * be visible in the background you must call this method again.
5521     *
5522     * <p>Only fullscreen opaque activities may make this call. I.e. this call is a nop
5523     * for dialog and translucent activities.
5524     *
5525     * <p>Under all circumstances, the activity must stop playing and release resources prior to or
5526     * within a call to {@link #onVisibleBehindCanceled()} or if this call returns false.
5527     *
5528     * <p>False will be returned any time this method is called between the return of onPause and
5529     *      the next call to onResume.
5530     *
5531     * @param visible true to notify the system that the activity wishes to be visible behind other
5532     *                translucent activities, false to indicate otherwise. Resources must be
5533     *                released when passing false to this method.
5534     * @return the resulting visibiity state. If true the activity will remain visible beyond
5535     *      {@link #onPause()} if the next activity is translucent or not fullscreen. If false
5536     *      then the activity may not count on being visible behind other translucent activities,
5537     *      and must stop any media playback and release resources.
5538     *      Returning false may occur in lieu of a call to {@link #onVisibleBehindCanceled()} so
5539     *      the return value must be checked.
5540     *
5541     * @see #onVisibleBehindCanceled()
5542     * @see #onBackgroundVisibleBehindChanged(boolean)
5543     */
5544    public boolean requestVisibleBehind(boolean visible) {
5545        if (!mResumed) {
5546            // Do not permit paused or stopped activities to do this.
5547            visible = false;
5548        }
5549        try {
5550            mVisibleBehind = ActivityManagerNative.getDefault()
5551                    .requestVisibleBehind(mToken, visible) && visible;
5552        } catch (RemoteException e) {
5553            mVisibleBehind = false;
5554        }
5555        return mVisibleBehind;
5556    }
5557
5558    /**
5559     * Called when a translucent activity over this activity is becoming opaque or another
5560     * activity is being launched. Activities that override this method must call
5561     * <code>super.onVisibleBehindCanceled()</code> or a SuperNotCalledException will be thrown.
5562     *
5563     * <p>When this method is called the activity has 500 msec to release any resources it may be
5564     * using while visible in the background.
5565     * If the activity has not returned from this method in 500 msec the system will destroy
5566     * the activity and kill the process in order to recover the resources for another
5567     * process. Otherwise {@link #onStop()} will be called following return.
5568     *
5569     * @see #requestVisibleBehind(boolean)
5570     * @see #onBackgroundVisibleBehindChanged(boolean)
5571     */
5572    public void onVisibleBehindCanceled() {
5573        mCalled = true;
5574    }
5575
5576    /**
5577     * Translucent activities may call this to determine if there is an activity below them that
5578     * is currently set to be visible in the background.
5579     *
5580     * @return true if an activity below is set to visible according to the most recent call to
5581     * {@link #requestVisibleBehind(boolean)}, false otherwise.
5582     *
5583     * @see #requestVisibleBehind(boolean)
5584     * @see #onVisibleBehindCanceled()
5585     * @see #onBackgroundVisibleBehindChanged(boolean)
5586     * @hide
5587     */
5588    @SystemApi
5589    public boolean isBackgroundVisibleBehind() {
5590        try {
5591            return ActivityManagerNative.getDefault().isBackgroundVisibleBehind(mToken);
5592        } catch (RemoteException e) {
5593        }
5594        return false;
5595    }
5596
5597    /**
5598     * The topmost foreground activity will receive this call when the background visibility state
5599     * of the activity below it changes.
5600     *
5601     * This call may be a consequence of {@link #requestVisibleBehind(boolean)} or might be
5602     * due to a background activity finishing itself.
5603     *
5604     * @param visible true if a background activity is visible, false otherwise.
5605     *
5606     * @see #requestVisibleBehind(boolean)
5607     * @see #onVisibleBehindCanceled()
5608     * @hide
5609     */
5610    @SystemApi
5611    public void onBackgroundVisibleBehindChanged(boolean visible) {
5612    }
5613
5614    /**
5615     * Activities cannot draw during the period that their windows are animating in. In order
5616     * to know when it is safe to begin drawing they can override this method which will be
5617     * called when the entering animation has completed.
5618     */
5619    public void onEnterAnimationComplete() {
5620    }
5621
5622    /**
5623     * Adjust the current immersive mode setting.
5624     *
5625     * Note that changing this value will have no effect on the activity's
5626     * {@link android.content.pm.ActivityInfo} structure; that is, if
5627     * <code>android:immersive</code> is set to <code>true</code>
5628     * in the application's manifest entry for this activity, the {@link
5629     * android.content.pm.ActivityInfo#flags ActivityInfo.flags} member will
5630     * always have its {@link android.content.pm.ActivityInfo#FLAG_IMMERSIVE
5631     * FLAG_IMMERSIVE} bit set.
5632     *
5633     * @see #isImmersive()
5634     * @see android.content.pm.ActivityInfo#FLAG_IMMERSIVE
5635     */
5636    public void setImmersive(boolean i) {
5637        try {
5638            ActivityManagerNative.getDefault().setImmersive(mToken, i);
5639        } catch (RemoteException e) {
5640            // pass
5641        }
5642    }
5643
5644    /**
5645     * Start an action mode.
5646     *
5647     * @param callback Callback that will manage lifecycle events for this context mode
5648     * @return The ContextMode that was started, or null if it was canceled
5649     *
5650     * @see ActionMode
5651     */
5652    @Nullable
5653    public ActionMode startActionMode(ActionMode.Callback callback) {
5654        return mWindow.getDecorView().startActionMode(callback);
5655    }
5656
5657    /**
5658     * Give the Activity a chance to control the UI for an action mode requested
5659     * by the system.
5660     *
5661     * <p>Note: If you are looking for a notification callback that an action mode
5662     * has been started for this activity, see {@link #onActionModeStarted(ActionMode)}.</p>
5663     *
5664     * @param callback The callback that should control the new action mode
5665     * @return The new action mode, or <code>null</code> if the activity does not want to
5666     *         provide special handling for this action mode. (It will be handled by the system.)
5667     */
5668    @Nullable
5669    @Override
5670    public ActionMode onWindowStartingActionMode(ActionMode.Callback callback) {
5671        initWindowDecorActionBar();
5672        if (mActionBar != null) {
5673            return mActionBar.startActionMode(callback);
5674        }
5675        return null;
5676    }
5677
5678    /**
5679     * Notifies the Activity that an action mode has been started.
5680     * Activity subclasses overriding this method should call the superclass implementation.
5681     *
5682     * @param mode The new action mode.
5683     */
5684    @Override
5685    public void onActionModeStarted(ActionMode mode) {
5686    }
5687
5688    /**
5689     * Notifies the activity that an action mode has finished.
5690     * Activity subclasses overriding this method should call the superclass implementation.
5691     *
5692     * @param mode The action mode that just finished.
5693     */
5694    @Override
5695    public void onActionModeFinished(ActionMode mode) {
5696    }
5697
5698    /**
5699     * Returns true if the app should recreate the task when navigating 'up' from this activity
5700     * by using targetIntent.
5701     *
5702     * <p>If this method returns false the app can trivially call
5703     * {@link #navigateUpTo(Intent)} using the same parameters to correctly perform
5704     * up navigation. If this method returns false, the app should synthesize a new task stack
5705     * by using {@link TaskStackBuilder} or another similar mechanism to perform up navigation.</p>
5706     *
5707     * @param targetIntent An intent representing the target destination for up navigation
5708     * @return true if navigating up should recreate a new task stack, false if the same task
5709     *         should be used for the destination
5710     */
5711    public boolean shouldUpRecreateTask(Intent targetIntent) {
5712        try {
5713            PackageManager pm = getPackageManager();
5714            ComponentName cn = targetIntent.getComponent();
5715            if (cn == null) {
5716                cn = targetIntent.resolveActivity(pm);
5717            }
5718            ActivityInfo info = pm.getActivityInfo(cn, 0);
5719            if (info.taskAffinity == null) {
5720                return false;
5721            }
5722            return ActivityManagerNative.getDefault()
5723                    .shouldUpRecreateTask(mToken, info.taskAffinity);
5724        } catch (RemoteException e) {
5725            return false;
5726        } catch (NameNotFoundException e) {
5727            return false;
5728        }
5729    }
5730
5731    /**
5732     * Navigate from this activity to the activity specified by upIntent, finishing this activity
5733     * in the process. If the activity indicated by upIntent already exists in the task's history,
5734     * this activity and all others before the indicated activity in the history stack will be
5735     * finished.
5736     *
5737     * <p>If the indicated activity does not appear in the history stack, this will finish
5738     * each activity in this task until the root activity of the task is reached, resulting in
5739     * an "in-app home" behavior. This can be useful in apps with a complex navigation hierarchy
5740     * when an activity may be reached by a path not passing through a canonical parent
5741     * activity.</p>
5742     *
5743     * <p>This method should be used when performing up navigation from within the same task
5744     * as the destination. If up navigation should cross tasks in some cases, see
5745     * {@link #shouldUpRecreateTask(Intent)}.</p>
5746     *
5747     * @param upIntent An intent representing the target destination for up navigation
5748     *
5749     * @return true if up navigation successfully reached the activity indicated by upIntent and
5750     *         upIntent was delivered to it. false if an instance of the indicated activity could
5751     *         not be found and this activity was simply finished normally.
5752     */
5753    public boolean navigateUpTo(Intent upIntent) {
5754        if (mParent == null) {
5755            ComponentName destInfo = upIntent.getComponent();
5756            if (destInfo == null) {
5757                destInfo = upIntent.resolveActivity(getPackageManager());
5758                if (destInfo == null) {
5759                    return false;
5760                }
5761                upIntent = new Intent(upIntent);
5762                upIntent.setComponent(destInfo);
5763            }
5764            int resultCode;
5765            Intent resultData;
5766            synchronized (this) {
5767                resultCode = mResultCode;
5768                resultData = mResultData;
5769            }
5770            if (resultData != null) {
5771                resultData.prepareToLeaveProcess();
5772            }
5773            try {
5774                upIntent.prepareToLeaveProcess();
5775                return ActivityManagerNative.getDefault().navigateUpTo(mToken, upIntent,
5776                        resultCode, resultData);
5777            } catch (RemoteException e) {
5778                return false;
5779            }
5780        } else {
5781            return mParent.navigateUpToFromChild(this, upIntent);
5782        }
5783    }
5784
5785    /**
5786     * This is called when a child activity of this one calls its
5787     * {@link #navigateUpTo} method.  The default implementation simply calls
5788     * navigateUpTo(upIntent) on this activity (the parent).
5789     *
5790     * @param child The activity making the call.
5791     * @param upIntent An intent representing the target destination for up navigation
5792     *
5793     * @return true if up navigation successfully reached the activity indicated by upIntent and
5794     *         upIntent was delivered to it. false if an instance of the indicated activity could
5795     *         not be found and this activity was simply finished normally.
5796     */
5797    public boolean navigateUpToFromChild(Activity child, Intent upIntent) {
5798        return navigateUpTo(upIntent);
5799    }
5800
5801    /**
5802     * Obtain an {@link Intent} that will launch an explicit target activity specified by
5803     * this activity's logical parent. The logical parent is named in the application's manifest
5804     * by the {@link android.R.attr#parentActivityName parentActivityName} attribute.
5805     * Activity subclasses may override this method to modify the Intent returned by
5806     * super.getParentActivityIntent() or to implement a different mechanism of retrieving
5807     * the parent intent entirely.
5808     *
5809     * @return a new Intent targeting the defined parent of this activity or null if
5810     *         there is no valid parent.
5811     */
5812    @Nullable
5813    public Intent getParentActivityIntent() {
5814        final String parentName = mActivityInfo.parentActivityName;
5815        if (TextUtils.isEmpty(parentName)) {
5816            return null;
5817        }
5818
5819        // If the parent itself has no parent, generate a main activity intent.
5820        final ComponentName target = new ComponentName(this, parentName);
5821        try {
5822            final ActivityInfo parentInfo = getPackageManager().getActivityInfo(target, 0);
5823            final String parentActivity = parentInfo.parentActivityName;
5824            final Intent parentIntent = parentActivity == null
5825                    ? Intent.makeMainActivity(target)
5826                    : new Intent().setComponent(target);
5827            return parentIntent;
5828        } catch (NameNotFoundException e) {
5829            Log.e(TAG, "getParentActivityIntent: bad parentActivityName '" + parentName +
5830                    "' in manifest");
5831            return null;
5832        }
5833    }
5834
5835    /**
5836     * When {@link android.app.ActivityOptions#makeSceneTransitionAnimation(Activity,
5837     * android.view.View, String)} was used to start an Activity, <var>callback</var>
5838     * will be called to handle shared elements on the <i>launched</i> Activity. This requires
5839     * {@link Window#FEATURE_ACTIVITY_TRANSITIONS}.
5840     *
5841     * @param callback Used to manipulate shared element transitions on the launched Activity.
5842     */
5843    public void setEnterSharedElementCallback(SharedElementCallback callback) {
5844        if (callback == null) {
5845            callback = SharedElementCallback.NULL_CALLBACK;
5846        }
5847        mEnterTransitionListener = callback;
5848    }
5849
5850    /**
5851     * When {@link android.app.ActivityOptions#makeSceneTransitionAnimation(Activity,
5852     * android.view.View, String)} was used to start an Activity, <var>callback</var>
5853     * will be called to handle shared elements on the <i>launching</i> Activity. Most
5854     * calls will only come when returning from the started Activity.
5855     * This requires {@link Window#FEATURE_ACTIVITY_TRANSITIONS}.
5856     *
5857     * @param callback Used to manipulate shared element transitions on the launching Activity.
5858     */
5859    public void setExitSharedElementCallback(SharedElementCallback callback) {
5860        if (callback == null) {
5861            callback = SharedElementCallback.NULL_CALLBACK;
5862        }
5863        mExitTransitionListener = callback;
5864    }
5865
5866    /**
5867     * Postpone the entering activity transition when Activity was started with
5868     * {@link android.app.ActivityOptions#makeSceneTransitionAnimation(Activity,
5869     * android.util.Pair[])}.
5870     * <p>This method gives the Activity the ability to delay starting the entering and
5871     * shared element transitions until all data is loaded. Until then, the Activity won't
5872     * draw into its window, leaving the window transparent. This may also cause the
5873     * returning animation to be delayed until data is ready. This method should be
5874     * called in {@link #onCreate(android.os.Bundle)} or in
5875     * {@link #onActivityReenter(int, android.content.Intent)}.
5876     * {@link #startPostponedEnterTransition()} must be called to allow the Activity to
5877     * start the transitions. If the Activity did not use
5878     * {@link android.app.ActivityOptions#makeSceneTransitionAnimation(Activity,
5879     * android.util.Pair[])}, then this method does nothing.</p>
5880     */
5881    public void postponeEnterTransition() {
5882        mActivityTransitionState.postponeEnterTransition();
5883    }
5884
5885    /**
5886     * Begin postponed transitions after {@link #postponeEnterTransition()} was called.
5887     * If postponeEnterTransition() was called, you must call startPostponedEnterTransition()
5888     * to have your Activity start drawing.
5889     */
5890    public void startPostponedEnterTransition() {
5891        mActivityTransitionState.startPostponedEnterTransition();
5892    }
5893
5894    // ------------------ Internal API ------------------
5895
5896    final void setParent(Activity parent) {
5897        mParent = parent;
5898    }
5899
5900    final void attach(Context context, ActivityThread aThread,
5901            Instrumentation instr, IBinder token, int ident,
5902            Application application, Intent intent, ActivityInfo info,
5903            CharSequence title, Activity parent, String id,
5904            NonConfigurationInstances lastNonConfigurationInstances,
5905            Configuration config, String referrer, IVoiceInteractor voiceInteractor) {
5906        attachBaseContext(context);
5907
5908        mFragments.attachActivity(this, mContainer, null);
5909
5910        mWindow = PolicyManager.makeNewWindow(this);
5911        mWindow.setCallback(this);
5912        mWindow.setOnWindowDismissedCallback(this);
5913        mWindow.getLayoutInflater().setPrivateFactory(this);
5914        if (info.softInputMode != WindowManager.LayoutParams.SOFT_INPUT_STATE_UNSPECIFIED) {
5915            mWindow.setSoftInputMode(info.softInputMode);
5916        }
5917        if (info.uiOptions != 0) {
5918            mWindow.setUiOptions(info.uiOptions);
5919        }
5920        mUiThread = Thread.currentThread();
5921
5922        mMainThread = aThread;
5923        mInstrumentation = instr;
5924        mToken = token;
5925        mIdent = ident;
5926        mApplication = application;
5927        mIntent = intent;
5928        mReferrer = referrer;
5929        mComponent = intent.getComponent();
5930        mActivityInfo = info;
5931        mTitle = title;
5932        mParent = parent;
5933        mEmbeddedID = id;
5934        mLastNonConfigurationInstances = lastNonConfigurationInstances;
5935        if (voiceInteractor != null) {
5936            if (lastNonConfigurationInstances != null) {
5937                mVoiceInteractor = lastNonConfigurationInstances.voiceInteractor;
5938            } else {
5939                mVoiceInteractor = new VoiceInteractor(voiceInteractor, this, this,
5940                        Looper.myLooper());
5941            }
5942        }
5943
5944        mWindow.setWindowManager(
5945                (WindowManager)context.getSystemService(Context.WINDOW_SERVICE),
5946                mToken, mComponent.flattenToString(),
5947                (info.flags & ActivityInfo.FLAG_HARDWARE_ACCELERATED) != 0);
5948        if (mParent != null) {
5949            mWindow.setContainer(mParent.getWindow());
5950        }
5951        mWindowManager = mWindow.getWindowManager();
5952        mCurrentConfig = config;
5953    }
5954
5955    /** @hide */
5956    public final IBinder getActivityToken() {
5957        return mParent != null ? mParent.getActivityToken() : mToken;
5958    }
5959
5960    final void performCreateCommon() {
5961        mVisibleFromClient = !mWindow.getWindowStyle().getBoolean(
5962                com.android.internal.R.styleable.Window_windowNoDisplay, false);
5963        mFragments.dispatchActivityCreated();
5964        mActivityTransitionState.setEnterActivityOptions(this, getActivityOptions());
5965    }
5966
5967    final void performCreate(Bundle icicle) {
5968        onCreate(icicle);
5969        mActivityTransitionState.readState(icicle);
5970        performCreateCommon();
5971    }
5972
5973    final void performCreate(Bundle icicle, PersistableBundle persistentState) {
5974        onCreate(icicle, persistentState);
5975        mActivityTransitionState.readState(icicle);
5976        performCreateCommon();
5977    }
5978
5979    final void performStart() {
5980        mActivityTransitionState.setEnterActivityOptions(this, getActivityOptions());
5981        mFragments.noteStateNotSaved();
5982        mCalled = false;
5983        mFragments.execPendingActions();
5984        mInstrumentation.callActivityOnStart(this);
5985        if (!mCalled) {
5986            throw new SuperNotCalledException(
5987                "Activity " + mComponent.toShortString() +
5988                " did not call through to super.onStart()");
5989        }
5990        mFragments.dispatchStart();
5991        if (mAllLoaderManagers != null) {
5992            final int N = mAllLoaderManagers.size();
5993            LoaderManagerImpl loaders[] = new LoaderManagerImpl[N];
5994            for (int i=N-1; i>=0; i--) {
5995                loaders[i] = mAllLoaderManagers.valueAt(i);
5996            }
5997            for (int i=0; i<N; i++) {
5998                LoaderManagerImpl lm = loaders[i];
5999                lm.finishRetain();
6000                lm.doReportStart();
6001            }
6002        }
6003        mActivityTransitionState.enterReady(this);
6004    }
6005
6006    final void performRestart() {
6007        mFragments.noteStateNotSaved();
6008
6009        if (mStopped) {
6010            mStopped = false;
6011            if (mToken != null && mParent == null) {
6012                WindowManagerGlobal.getInstance().setStoppedState(mToken, false);
6013            }
6014
6015            synchronized (mManagedCursors) {
6016                final int N = mManagedCursors.size();
6017                for (int i=0; i<N; i++) {
6018                    ManagedCursor mc = mManagedCursors.get(i);
6019                    if (mc.mReleased || mc.mUpdated) {
6020                        if (!mc.mCursor.requery()) {
6021                            if (getApplicationInfo().targetSdkVersion
6022                                    >= android.os.Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
6023                                throw new IllegalStateException(
6024                                        "trying to requery an already closed cursor  "
6025                                        + mc.mCursor);
6026                            }
6027                        }
6028                        mc.mReleased = false;
6029                        mc.mUpdated = false;
6030                    }
6031                }
6032            }
6033
6034            mCalled = false;
6035            mInstrumentation.callActivityOnRestart(this);
6036            if (!mCalled) {
6037                throw new SuperNotCalledException(
6038                    "Activity " + mComponent.toShortString() +
6039                    " did not call through to super.onRestart()");
6040            }
6041            performStart();
6042        }
6043    }
6044
6045    final void performResume() {
6046        performRestart();
6047
6048        mFragments.execPendingActions();
6049
6050        mLastNonConfigurationInstances = null;
6051
6052        mCalled = false;
6053        // mResumed is set by the instrumentation
6054        mInstrumentation.callActivityOnResume(this);
6055        if (!mCalled) {
6056            throw new SuperNotCalledException(
6057                "Activity " + mComponent.toShortString() +
6058                " did not call through to super.onResume()");
6059        }
6060
6061        // Now really resume, and install the current status bar and menu.
6062        mCalled = false;
6063
6064        mFragments.dispatchResume();
6065        mFragments.execPendingActions();
6066
6067        onPostResume();
6068        if (!mCalled) {
6069            throw new SuperNotCalledException(
6070                "Activity " + mComponent.toShortString() +
6071                " did not call through to super.onPostResume()");
6072        }
6073    }
6074
6075    final void performPause() {
6076        mDoReportFullyDrawn = false;
6077        mFragments.dispatchPause();
6078        mCalled = false;
6079        onPause();
6080        mResumed = false;
6081        if (!mCalled && getApplicationInfo().targetSdkVersion
6082                >= android.os.Build.VERSION_CODES.GINGERBREAD) {
6083            throw new SuperNotCalledException(
6084                    "Activity " + mComponent.toShortString() +
6085                    " did not call through to super.onPause()");
6086        }
6087        mResumed = false;
6088    }
6089
6090    final void performUserLeaving() {
6091        onUserInteraction();
6092        onUserLeaveHint();
6093    }
6094
6095    final void performStop() {
6096        mDoReportFullyDrawn = false;
6097        if (mLoadersStarted) {
6098            mLoadersStarted = false;
6099            if (mLoaderManager != null) {
6100                if (!mChangingConfigurations) {
6101                    mLoaderManager.doStop();
6102                } else {
6103                    mLoaderManager.doRetain();
6104                }
6105            }
6106        }
6107
6108        if (!mStopped) {
6109            if (mWindow != null) {
6110                mWindow.closeAllPanels();
6111            }
6112
6113            if (mToken != null && mParent == null) {
6114                WindowManagerGlobal.getInstance().setStoppedState(mToken, true);
6115            }
6116
6117            mFragments.dispatchStop();
6118
6119            mCalled = false;
6120            mInstrumentation.callActivityOnStop(this);
6121            if (!mCalled) {
6122                throw new SuperNotCalledException(
6123                    "Activity " + mComponent.toShortString() +
6124                    " did not call through to super.onStop()");
6125            }
6126
6127            synchronized (mManagedCursors) {
6128                final int N = mManagedCursors.size();
6129                for (int i=0; i<N; i++) {
6130                    ManagedCursor mc = mManagedCursors.get(i);
6131                    if (!mc.mReleased) {
6132                        mc.mCursor.deactivate();
6133                        mc.mReleased = true;
6134                    }
6135                }
6136            }
6137
6138            mStopped = true;
6139        }
6140        mResumed = false;
6141    }
6142
6143    final void performDestroy() {
6144        mDestroyed = true;
6145        mWindow.destroy();
6146        mFragments.dispatchDestroy();
6147        onDestroy();
6148        if (mLoaderManager != null) {
6149            mLoaderManager.doDestroy();
6150        }
6151        if (mVoiceInteractor != null) {
6152            mVoiceInteractor.detachActivity();
6153        }
6154    }
6155
6156    /**
6157     * @hide
6158     */
6159    public final boolean isResumed() {
6160        return mResumed;
6161    }
6162
6163    void dispatchActivityResult(String who, int requestCode,
6164        int resultCode, Intent data) {
6165        if (false) Log.v(
6166            TAG, "Dispatching result: who=" + who + ", reqCode=" + requestCode
6167            + ", resCode=" + resultCode + ", data=" + data);
6168        mFragments.noteStateNotSaved();
6169        if (who == null) {
6170            onActivityResult(requestCode, resultCode, data);
6171        } else {
6172            Fragment frag = mFragments.findFragmentByWho(who);
6173            if (frag != null) {
6174                frag.onActivityResult(requestCode, resultCode, data);
6175            }
6176        }
6177    }
6178
6179    /**
6180     * Request to put this Activity in a mode where the user is locked to the
6181     * current task.
6182     *
6183     * This will prevent the user from launching other apps, going to settings,
6184     * or reaching the home screen.
6185     *
6186     * If {@link DevicePolicyManager#isLockTaskPermitted(String)} returns true
6187     * for this component then the app will go directly into Lock Task mode.  The user
6188     * will not be able to exit this mode until {@link Activity#stopLockTask()} is called.
6189     *
6190     * If {@link DevicePolicyManager#isLockTaskPermitted(String)} returns false
6191     * then the system will prompt the user with a dialog requesting permission to enter
6192     * this mode.  When entered through this method the user can exit at any time through
6193     * an action described by the request dialog.  Calling stopLockTask will also exit the
6194     * mode.
6195     */
6196    public void startLockTask() {
6197        try {
6198            ActivityManagerNative.getDefault().startLockTaskMode(mToken);
6199        } catch (RemoteException e) {
6200        }
6201    }
6202
6203    /**
6204     * Allow the user to switch away from the current task.
6205     *
6206     * Called to end the mode started by {@link Activity#startLockTask}. This
6207     * can only be called by activities that have successfully called
6208     * startLockTask previously.
6209     *
6210     * This will allow the user to exit this app and move onto other activities.
6211     */
6212    public void stopLockTask() {
6213        try {
6214            ActivityManagerNative.getDefault().stopLockTaskMode();
6215        } catch (RemoteException e) {
6216        }
6217    }
6218
6219    /**
6220     * Interface for informing a translucent {@link Activity} once all visible activities below it
6221     * have completed drawing. This is necessary only after an {@link Activity} has been made
6222     * opaque using {@link Activity#convertFromTranslucent()} and before it has been drawn
6223     * translucent again following a call to {@link
6224     * Activity#convertToTranslucent(android.app.Activity.TranslucentConversionListener,
6225     * ActivityOptions)}
6226     *
6227     * @hide
6228     */
6229    @SystemApi
6230    public interface TranslucentConversionListener {
6231        /**
6232         * Callback made following {@link Activity#convertToTranslucent} once all visible Activities
6233         * below the top one have been redrawn. Following this callback it is safe to make the top
6234         * Activity translucent because the underlying Activity has been drawn.
6235         *
6236         * @param drawComplete True if the background Activity has drawn itself. False if a timeout
6237         * occurred waiting for the Activity to complete drawing.
6238         *
6239         * @see Activity#convertFromTranslucent()
6240         * @see Activity#convertToTranslucent(TranslucentConversionListener, ActivityOptions)
6241         */
6242        public void onTranslucentConversionComplete(boolean drawComplete);
6243    }
6244}
6245