Intent.java revision ef24909d84db9d5aefb825ee1556089fcdcc1678
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.content;
18
19import android.content.pm.ApplicationInfo;
20import android.provider.MediaStore;
21import android.util.ArraySet;
22
23import org.xmlpull.v1.XmlPullParser;
24import org.xmlpull.v1.XmlPullParserException;
25
26import android.annotation.AnyRes;
27import android.annotation.IntDef;
28import android.annotation.SdkConstant;
29import android.annotation.SystemApi;
30import android.annotation.SdkConstant.SdkConstantType;
31import android.content.pm.ActivityInfo;
32
33import static android.content.ContentProvider.maybeAddUserId;
34
35import android.content.pm.PackageManager;
36import android.content.pm.ResolveInfo;
37import android.content.res.Resources;
38import android.content.res.TypedArray;
39import android.graphics.Rect;
40import android.net.Uri;
41import android.os.Bundle;
42import android.os.IBinder;
43import android.os.Parcel;
44import android.os.Parcelable;
45import android.os.Process;
46import android.os.StrictMode;
47import android.os.UserHandle;
48import android.provider.DocumentsContract;
49import android.provider.DocumentsProvider;
50import android.provider.OpenableColumns;
51import android.util.AttributeSet;
52import android.util.Log;
53
54import com.android.internal.util.XmlUtils;
55
56import org.xmlpull.v1.XmlSerializer;
57
58import java.io.IOException;
59import java.io.Serializable;
60import java.lang.annotation.Retention;
61import java.lang.annotation.RetentionPolicy;
62import java.net.URISyntaxException;
63import java.util.ArrayList;
64import java.util.List;
65import java.util.Locale;
66import java.util.Objects;
67import java.util.Set;
68
69/**
70 * An intent is an abstract description of an operation to be performed.  It
71 * can be used with {@link Context#startActivity(Intent) startActivity} to
72 * launch an {@link android.app.Activity},
73 * {@link android.content.Context#sendBroadcast(Intent) broadcastIntent} to
74 * send it to any interested {@link BroadcastReceiver BroadcastReceiver} components,
75 * and {@link android.content.Context#startService} or
76 * {@link android.content.Context#bindService} to communicate with a
77 * background {@link android.app.Service}.
78 *
79 * <p>An Intent provides a facility for performing late runtime binding between the code in
80 * different applications. Its most significant use is in the launching of activities, where it
81 * can be thought of as the glue between activities. It is basically a passive data structure
82 * holding an abstract description of an action to be performed.</p>
83 *
84 * <div class="special reference">
85 * <h3>Developer Guides</h3>
86 * <p>For information about how to create and resolve intents, read the
87 * <a href="{@docRoot}guide/topics/intents/intents-filters.html">Intents and Intent Filters</a>
88 * developer guide.</p>
89 * </div>
90 *
91 * <a name="IntentStructure"></a>
92 * <h3>Intent Structure</h3>
93 * <p>The primary pieces of information in an intent are:</p>
94 *
95 * <ul>
96 *   <li> <p><b>action</b> -- The general action to be performed, such as
97 *     {@link #ACTION_VIEW}, {@link #ACTION_EDIT}, {@link #ACTION_MAIN},
98 *     etc.</p>
99 *   </li>
100 *   <li> <p><b>data</b> -- The data to operate on, such as a person record
101 *     in the contacts database, expressed as a {@link android.net.Uri}.</p>
102 *   </li>
103 * </ul>
104 *
105 *
106 * <p>Some examples of action/data pairs are:</p>
107 *
108 * <ul>
109 *   <li> <p><b>{@link #ACTION_VIEW} <i>content://contacts/people/1</i></b> -- Display
110 *     information about the person whose identifier is "1".</p>
111 *   </li>
112 *   <li> <p><b>{@link #ACTION_DIAL} <i>content://contacts/people/1</i></b> -- Display
113 *     the phone dialer with the person filled in.</p>
114 *   </li>
115 *   <li> <p><b>{@link #ACTION_VIEW} <i>tel:123</i></b> -- Display
116 *     the phone dialer with the given number filled in.  Note how the
117 *     VIEW action does what what is considered the most reasonable thing for
118 *     a particular URI.</p>
119 *   </li>
120 *   <li> <p><b>{@link #ACTION_DIAL} <i>tel:123</i></b> -- Display
121 *     the phone dialer with the given number filled in.</p>
122 *   </li>
123 *   <li> <p><b>{@link #ACTION_EDIT} <i>content://contacts/people/1</i></b> -- Edit
124 *     information about the person whose identifier is "1".</p>
125 *   </li>
126 *   <li> <p><b>{@link #ACTION_VIEW} <i>content://contacts/people/</i></b> -- Display
127 *     a list of people, which the user can browse through.  This example is a
128 *     typical top-level entry into the Contacts application, showing you the
129 *     list of people. Selecting a particular person to view would result in a
130 *     new intent { <b>{@link #ACTION_VIEW} <i>content://contacts/N</i></b> }
131 *     being used to start an activity to display that person.</p>
132 *   </li>
133 * </ul>
134 *
135 * <p>In addition to these primary attributes, there are a number of secondary
136 * attributes that you can also include with an intent:</p>
137 *
138 * <ul>
139 *     <li> <p><b>category</b> -- Gives additional information about the action
140 *         to execute.  For example, {@link #CATEGORY_LAUNCHER} means it should
141 *         appear in the Launcher as a top-level application, while
142 *         {@link #CATEGORY_ALTERNATIVE} means it should be included in a list
143 *         of alternative actions the user can perform on a piece of data.</p>
144 *     <li> <p><b>type</b> -- Specifies an explicit type (a MIME type) of the
145 *         intent data.  Normally the type is inferred from the data itself.
146 *         By setting this attribute, you disable that evaluation and force
147 *         an explicit type.</p>
148 *     <li> <p><b>component</b> -- Specifies an explicit name of a component
149 *         class to use for the intent.  Normally this is determined by looking
150 *         at the other information in the intent (the action, data/type, and
151 *         categories) and matching that with a component that can handle it.
152 *         If this attribute is set then none of the evaluation is performed,
153 *         and this component is used exactly as is.  By specifying this attribute,
154 *         all of the other Intent attributes become optional.</p>
155 *     <li> <p><b>extras</b> -- This is a {@link Bundle} of any additional information.
156 *         This can be used to provide extended information to the component.
157 *         For example, if we have a action to send an e-mail message, we could
158 *         also include extra pieces of data here to supply a subject, body,
159 *         etc.</p>
160 * </ul>
161 *
162 * <p>Here are some examples of other operations you can specify as intents
163 * using these additional parameters:</p>
164 *
165 * <ul>
166 *   <li> <p><b>{@link #ACTION_MAIN} with category {@link #CATEGORY_HOME}</b> --
167 *     Launch the home screen.</p>
168 *   </li>
169 *   <li> <p><b>{@link #ACTION_GET_CONTENT} with MIME type
170 *     <i>{@link android.provider.Contacts.Phones#CONTENT_URI
171 *     vnd.android.cursor.item/phone}</i></b>
172 *     -- Display the list of people's phone numbers, allowing the user to
173 *     browse through them and pick one and return it to the parent activity.</p>
174 *   </li>
175 *   <li> <p><b>{@link #ACTION_GET_CONTENT} with MIME type
176 *     <i>*{@literal /}*</i> and category {@link #CATEGORY_OPENABLE}</b>
177 *     -- Display all pickers for data that can be opened with
178 *     {@link ContentResolver#openInputStream(Uri) ContentResolver.openInputStream()},
179 *     allowing the user to pick one of them and then some data inside of it
180 *     and returning the resulting URI to the caller.  This can be used,
181 *     for example, in an e-mail application to allow the user to pick some
182 *     data to include as an attachment.</p>
183 *   </li>
184 * </ul>
185 *
186 * <p>There are a variety of standard Intent action and category constants
187 * defined in the Intent class, but applications can also define their own.
188 * These strings use java style scoping, to ensure they are unique -- for
189 * example, the standard {@link #ACTION_VIEW} is called
190 * "android.intent.action.VIEW".</p>
191 *
192 * <p>Put together, the set of actions, data types, categories, and extra data
193 * defines a language for the system allowing for the expression of phrases
194 * such as "call john smith's cell".  As applications are added to the system,
195 * they can extend this language by adding new actions, types, and categories, or
196 * they can modify the behavior of existing phrases by supplying their own
197 * activities that handle them.</p>
198 *
199 * <a name="IntentResolution"></a>
200 * <h3>Intent Resolution</h3>
201 *
202 * <p>There are two primary forms of intents you will use.
203 *
204 * <ul>
205 *     <li> <p><b>Explicit Intents</b> have specified a component (via
206 *     {@link #setComponent} or {@link #setClass}), which provides the exact
207 *     class to be run.  Often these will not include any other information,
208 *     simply being a way for an application to launch various internal
209 *     activities it has as the user interacts with the application.
210 *
211 *     <li> <p><b>Implicit Intents</b> have not specified a component;
212 *     instead, they must include enough information for the system to
213 *     determine which of the available components is best to run for that
214 *     intent.
215 * </ul>
216 *
217 * <p>When using implicit intents, given such an arbitrary intent we need to
218 * know what to do with it. This is handled by the process of <em>Intent
219 * resolution</em>, which maps an Intent to an {@link android.app.Activity},
220 * {@link BroadcastReceiver}, or {@link android.app.Service} (or sometimes two or
221 * more activities/receivers) that can handle it.</p>
222 *
223 * <p>The intent resolution mechanism basically revolves around matching an
224 * Intent against all of the &lt;intent-filter&gt; descriptions in the
225 * installed application packages.  (Plus, in the case of broadcasts, any {@link BroadcastReceiver}
226 * objects explicitly registered with {@link Context#registerReceiver}.)  More
227 * details on this can be found in the documentation on the {@link
228 * IntentFilter} class.</p>
229 *
230 * <p>There are three pieces of information in the Intent that are used for
231 * resolution: the action, type, and category.  Using this information, a query
232 * is done on the {@link PackageManager} for a component that can handle the
233 * intent. The appropriate component is determined based on the intent
234 * information supplied in the <code>AndroidManifest.xml</code> file as
235 * follows:</p>
236 *
237 * <ul>
238 *     <li> <p>The <b>action</b>, if given, must be listed by the component as
239 *         one it handles.</p>
240 *     <li> <p>The <b>type</b> is retrieved from the Intent's data, if not
241 *         already supplied in the Intent.  Like the action, if a type is
242 *         included in the intent (either explicitly or implicitly in its
243 *         data), then this must be listed by the component as one it handles.</p>
244 *     <li> For data that is not a <code>content:</code> URI and where no explicit
245 *         type is included in the Intent, instead the <b>scheme</b> of the
246 *         intent data (such as <code>http:</code> or <code>mailto:</code>) is
247 *         considered. Again like the action, if we are matching a scheme it
248 *         must be listed by the component as one it can handle.
249 *     <li> <p>The <b>categories</b>, if supplied, must <em>all</em> be listed
250 *         by the activity as categories it handles.  That is, if you include
251 *         the categories {@link #CATEGORY_LAUNCHER} and
252 *         {@link #CATEGORY_ALTERNATIVE}, then you will only resolve to components
253 *         with an intent that lists <em>both</em> of those categories.
254 *         Activities will very often need to support the
255 *         {@link #CATEGORY_DEFAULT} so that they can be found by
256 *         {@link Context#startActivity Context.startActivity()}.</p>
257 * </ul>
258 *
259 * <p>For example, consider the Note Pad sample application that
260 * allows user to browse through a list of notes data and view details about
261 * individual items.  Text in italics indicate places were you would replace a
262 * name with one specific to your own package.</p>
263 *
264 * <pre> &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android"
265 *       package="<i>com.android.notepad</i>"&gt;
266 *     &lt;application android:icon="@drawable/app_notes"
267 *             android:label="@string/app_name"&gt;
268 *
269 *         &lt;provider class=".NotePadProvider"
270 *                 android:authorities="<i>com.google.provider.NotePad</i>" /&gt;
271 *
272 *         &lt;activity class=".NotesList" android:label="@string/title_notes_list"&gt;
273 *             &lt;intent-filter&gt;
274 *                 &lt;action android:name="android.intent.action.MAIN" /&gt;
275 *                 &lt;category android:name="android.intent.category.LAUNCHER" /&gt;
276 *             &lt;/intent-filter&gt;
277 *             &lt;intent-filter&gt;
278 *                 &lt;action android:name="android.intent.action.VIEW" /&gt;
279 *                 &lt;action android:name="android.intent.action.EDIT" /&gt;
280 *                 &lt;action android:name="android.intent.action.PICK" /&gt;
281 *                 &lt;category android:name="android.intent.category.DEFAULT" /&gt;
282 *                 &lt;data android:mimeType="vnd.android.cursor.dir/<i>vnd.google.note</i>" /&gt;
283 *             &lt;/intent-filter&gt;
284 *             &lt;intent-filter&gt;
285 *                 &lt;action android:name="android.intent.action.GET_CONTENT" /&gt;
286 *                 &lt;category android:name="android.intent.category.DEFAULT" /&gt;
287 *                 &lt;data android:mimeType="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
288 *             &lt;/intent-filter&gt;
289 *         &lt;/activity&gt;
290 *
291 *         &lt;activity class=".NoteEditor" android:label="@string/title_note"&gt;
292 *             &lt;intent-filter android:label="@string/resolve_edit"&gt;
293 *                 &lt;action android:name="android.intent.action.VIEW" /&gt;
294 *                 &lt;action android:name="android.intent.action.EDIT" /&gt;
295 *                 &lt;category android:name="android.intent.category.DEFAULT" /&gt;
296 *                 &lt;data android:mimeType="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
297 *             &lt;/intent-filter&gt;
298 *
299 *             &lt;intent-filter&gt;
300 *                 &lt;action android:name="android.intent.action.INSERT" /&gt;
301 *                 &lt;category android:name="android.intent.category.DEFAULT" /&gt;
302 *                 &lt;data android:mimeType="vnd.android.cursor.dir/<i>vnd.google.note</i>" /&gt;
303 *             &lt;/intent-filter&gt;
304 *
305 *         &lt;/activity&gt;
306 *
307 *         &lt;activity class=".TitleEditor" android:label="@string/title_edit_title"
308 *                 android:theme="@android:style/Theme.Dialog"&gt;
309 *             &lt;intent-filter android:label="@string/resolve_title"&gt;
310 *                 &lt;action android:name="<i>com.android.notepad.action.EDIT_TITLE</i>" /&gt;
311 *                 &lt;category android:name="android.intent.category.DEFAULT" /&gt;
312 *                 &lt;category android:name="android.intent.category.ALTERNATIVE" /&gt;
313 *                 &lt;category android:name="android.intent.category.SELECTED_ALTERNATIVE" /&gt;
314 *                 &lt;data android:mimeType="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
315 *             &lt;/intent-filter&gt;
316 *         &lt;/activity&gt;
317 *
318 *     &lt;/application&gt;
319 * &lt;/manifest&gt;</pre>
320 *
321 * <p>The first activity,
322 * <code>com.android.notepad.NotesList</code>, serves as our main
323 * entry into the app.  It can do three things as described by its three intent
324 * templates:
325 * <ol>
326 * <li><pre>
327 * &lt;intent-filter&gt;
328 *     &lt;action android:name="{@link #ACTION_MAIN android.intent.action.MAIN}" /&gt;
329 *     &lt;category android:name="{@link #CATEGORY_LAUNCHER android.intent.category.LAUNCHER}" /&gt;
330 * &lt;/intent-filter&gt;</pre>
331 * <p>This provides a top-level entry into the NotePad application: the standard
332 * MAIN action is a main entry point (not requiring any other information in
333 * the Intent), and the LAUNCHER category says that this entry point should be
334 * listed in the application launcher.</p>
335 * <li><pre>
336 * &lt;intent-filter&gt;
337 *     &lt;action android:name="{@link #ACTION_VIEW android.intent.action.VIEW}" /&gt;
338 *     &lt;action android:name="{@link #ACTION_EDIT android.intent.action.EDIT}" /&gt;
339 *     &lt;action android:name="{@link #ACTION_PICK android.intent.action.PICK}" /&gt;
340 *     &lt;category android:name="{@link #CATEGORY_DEFAULT android.intent.category.DEFAULT}" /&gt;
341 *     &lt;data mimeType:name="vnd.android.cursor.dir/<i>vnd.google.note</i>" /&gt;
342 * &lt;/intent-filter&gt;</pre>
343 * <p>This declares the things that the activity can do on a directory of
344 * notes.  The type being supported is given with the &lt;type&gt; tag, where
345 * <code>vnd.android.cursor.dir/vnd.google.note</code> is a URI from which
346 * a Cursor of zero or more items (<code>vnd.android.cursor.dir</code>) can
347 * be retrieved which holds our note pad data (<code>vnd.google.note</code>).
348 * The activity allows the user to view or edit the directory of data (via
349 * the VIEW and EDIT actions), or to pick a particular note and return it
350 * to the caller (via the PICK action).  Note also the DEFAULT category
351 * supplied here: this is <em>required</em> for the
352 * {@link Context#startActivity Context.startActivity} method to resolve your
353 * activity when its component name is not explicitly specified.</p>
354 * <li><pre>
355 * &lt;intent-filter&gt;
356 *     &lt;action android:name="{@link #ACTION_GET_CONTENT android.intent.action.GET_CONTENT}" /&gt;
357 *     &lt;category android:name="{@link #CATEGORY_DEFAULT android.intent.category.DEFAULT}" /&gt;
358 *     &lt;data android:mimeType="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
359 * &lt;/intent-filter&gt;</pre>
360 * <p>This filter describes the ability return to the caller a note selected by
361 * the user without needing to know where it came from.  The data type
362 * <code>vnd.android.cursor.item/vnd.google.note</code> is a URI from which
363 * a Cursor of exactly one (<code>vnd.android.cursor.item</code>) item can
364 * be retrieved which contains our note pad data (<code>vnd.google.note</code>).
365 * The GET_CONTENT action is similar to the PICK action, where the activity
366 * will return to its caller a piece of data selected by the user.  Here,
367 * however, the caller specifies the type of data they desire instead of
368 * the type of data the user will be picking from.</p>
369 * </ol>
370 *
371 * <p>Given these capabilities, the following intents will resolve to the
372 * NotesList activity:</p>
373 *
374 * <ul>
375 *     <li> <p><b>{ action=android.app.action.MAIN }</b> matches all of the
376 *         activities that can be used as top-level entry points into an
377 *         application.</p>
378 *     <li> <p><b>{ action=android.app.action.MAIN,
379 *         category=android.app.category.LAUNCHER }</b> is the actual intent
380 *         used by the Launcher to populate its top-level list.</p>
381 *     <li> <p><b>{ action=android.intent.action.VIEW
382 *          data=content://com.google.provider.NotePad/notes }</b>
383 *         displays a list of all the notes under
384 *         "content://com.google.provider.NotePad/notes", which
385 *         the user can browse through and see the details on.</p>
386 *     <li> <p><b>{ action=android.app.action.PICK
387 *          data=content://com.google.provider.NotePad/notes }</b>
388 *         provides a list of the notes under
389 *         "content://com.google.provider.NotePad/notes", from which
390 *         the user can pick a note whose data URL is returned back to the caller.</p>
391 *     <li> <p><b>{ action=android.app.action.GET_CONTENT
392 *          type=vnd.android.cursor.item/vnd.google.note }</b>
393 *         is similar to the pick action, but allows the caller to specify the
394 *         kind of data they want back so that the system can find the appropriate
395 *         activity to pick something of that data type.</p>
396 * </ul>
397 *
398 * <p>The second activity,
399 * <code>com.android.notepad.NoteEditor</code>, shows the user a single
400 * note entry and allows them to edit it.  It can do two things as described
401 * by its two intent templates:
402 * <ol>
403 * <li><pre>
404 * &lt;intent-filter android:label="@string/resolve_edit"&gt;
405 *     &lt;action android:name="{@link #ACTION_VIEW android.intent.action.VIEW}" /&gt;
406 *     &lt;action android:name="{@link #ACTION_EDIT android.intent.action.EDIT}" /&gt;
407 *     &lt;category android:name="{@link #CATEGORY_DEFAULT android.intent.category.DEFAULT}" /&gt;
408 *     &lt;data android:mimeType="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
409 * &lt;/intent-filter&gt;</pre>
410 * <p>The first, primary, purpose of this activity is to let the user interact
411 * with a single note, as decribed by the MIME type
412 * <code>vnd.android.cursor.item/vnd.google.note</code>.  The activity can
413 * either VIEW a note or allow the user to EDIT it.  Again we support the
414 * DEFAULT category to allow the activity to be launched without explicitly
415 * specifying its component.</p>
416 * <li><pre>
417 * &lt;intent-filter&gt;
418 *     &lt;action android:name="{@link #ACTION_INSERT android.intent.action.INSERT}" /&gt;
419 *     &lt;category android:name="{@link #CATEGORY_DEFAULT android.intent.category.DEFAULT}" /&gt;
420 *     &lt;data android:mimeType="vnd.android.cursor.dir/<i>vnd.google.note</i>" /&gt;
421 * &lt;/intent-filter&gt;</pre>
422 * <p>The secondary use of this activity is to insert a new note entry into
423 * an existing directory of notes.  This is used when the user creates a new
424 * note: the INSERT action is executed on the directory of notes, causing
425 * this activity to run and have the user create the new note data which
426 * it then adds to the content provider.</p>
427 * </ol>
428 *
429 * <p>Given these capabilities, the following intents will resolve to the
430 * NoteEditor activity:</p>
431 *
432 * <ul>
433 *     <li> <p><b>{ action=android.intent.action.VIEW
434 *          data=content://com.google.provider.NotePad/notes/<var>{ID}</var> }</b>
435 *         shows the user the content of note <var>{ID}</var>.</p>
436 *     <li> <p><b>{ action=android.app.action.EDIT
437 *          data=content://com.google.provider.NotePad/notes/<var>{ID}</var> }</b>
438 *         allows the user to edit the content of note <var>{ID}</var>.</p>
439 *     <li> <p><b>{ action=android.app.action.INSERT
440 *          data=content://com.google.provider.NotePad/notes }</b>
441 *         creates a new, empty note in the notes list at
442 *         "content://com.google.provider.NotePad/notes"
443 *         and allows the user to edit it.  If they keep their changes, the URI
444 *         of the newly created note is returned to the caller.</p>
445 * </ul>
446 *
447 * <p>The last activity,
448 * <code>com.android.notepad.TitleEditor</code>, allows the user to
449 * edit the title of a note.  This could be implemented as a class that the
450 * application directly invokes (by explicitly setting its component in
451 * the Intent), but here we show a way you can publish alternative
452 * operations on existing data:</p>
453 *
454 * <pre>
455 * &lt;intent-filter android:label="@string/resolve_title"&gt;
456 *     &lt;action android:name="<i>com.android.notepad.action.EDIT_TITLE</i>" /&gt;
457 *     &lt;category android:name="{@link #CATEGORY_DEFAULT android.intent.category.DEFAULT}" /&gt;
458 *     &lt;category android:name="{@link #CATEGORY_ALTERNATIVE android.intent.category.ALTERNATIVE}" /&gt;
459 *     &lt;category android:name="{@link #CATEGORY_SELECTED_ALTERNATIVE android.intent.category.SELECTED_ALTERNATIVE}" /&gt;
460 *     &lt;data android:mimeType="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
461 * &lt;/intent-filter&gt;</pre>
462 *
463 * <p>In the single intent template here, we
464 * have created our own private action called
465 * <code>com.android.notepad.action.EDIT_TITLE</code> which means to
466 * edit the title of a note.  It must be invoked on a specific note
467 * (data type <code>vnd.android.cursor.item/vnd.google.note</code>) like the previous
468 * view and edit actions, but here displays and edits the title contained
469 * in the note data.
470 *
471 * <p>In addition to supporting the default category as usual, our title editor
472 * also supports two other standard categories: ALTERNATIVE and
473 * SELECTED_ALTERNATIVE.  Implementing
474 * these categories allows others to find the special action it provides
475 * without directly knowing about it, through the
476 * {@link android.content.pm.PackageManager#queryIntentActivityOptions} method, or
477 * more often to build dynamic menu items with
478 * {@link android.view.Menu#addIntentOptions}.  Note that in the intent
479 * template here was also supply an explicit name for the template
480 * (via <code>android:label="@string/resolve_title"</code>) to better control
481 * what the user sees when presented with this activity as an alternative
482 * action to the data they are viewing.
483 *
484 * <p>Given these capabilities, the following intent will resolve to the
485 * TitleEditor activity:</p>
486 *
487 * <ul>
488 *     <li> <p><b>{ action=com.android.notepad.action.EDIT_TITLE
489 *          data=content://com.google.provider.NotePad/notes/<var>{ID}</var> }</b>
490 *         displays and allows the user to edit the title associated
491 *         with note <var>{ID}</var>.</p>
492 * </ul>
493 *
494 * <h3>Standard Activity Actions</h3>
495 *
496 * <p>These are the current standard actions that Intent defines for launching
497 * activities (usually through {@link Context#startActivity}.  The most
498 * important, and by far most frequently used, are {@link #ACTION_MAIN} and
499 * {@link #ACTION_EDIT}.
500 *
501 * <ul>
502 *     <li> {@link #ACTION_MAIN}
503 *     <li> {@link #ACTION_VIEW}
504 *     <li> {@link #ACTION_ATTACH_DATA}
505 *     <li> {@link #ACTION_EDIT}
506 *     <li> {@link #ACTION_PICK}
507 *     <li> {@link #ACTION_CHOOSER}
508 *     <li> {@link #ACTION_GET_CONTENT}
509 *     <li> {@link #ACTION_DIAL}
510 *     <li> {@link #ACTION_CALL}
511 *     <li> {@link #ACTION_SEND}
512 *     <li> {@link #ACTION_SENDTO}
513 *     <li> {@link #ACTION_ANSWER}
514 *     <li> {@link #ACTION_INSERT}
515 *     <li> {@link #ACTION_DELETE}
516 *     <li> {@link #ACTION_RUN}
517 *     <li> {@link #ACTION_SYNC}
518 *     <li> {@link #ACTION_PICK_ACTIVITY}
519 *     <li> {@link #ACTION_SEARCH}
520 *     <li> {@link #ACTION_WEB_SEARCH}
521 *     <li> {@link #ACTION_FACTORY_TEST}
522 * </ul>
523 *
524 * <h3>Standard Broadcast Actions</h3>
525 *
526 * <p>These are the current standard actions that Intent defines for receiving
527 * broadcasts (usually through {@link Context#registerReceiver} or a
528 * &lt;receiver&gt; tag in a manifest).
529 *
530 * <ul>
531 *     <li> {@link #ACTION_TIME_TICK}
532 *     <li> {@link #ACTION_TIME_CHANGED}
533 *     <li> {@link #ACTION_TIMEZONE_CHANGED}
534 *     <li> {@link #ACTION_BOOT_COMPLETED}
535 *     <li> {@link #ACTION_PACKAGE_ADDED}
536 *     <li> {@link #ACTION_PACKAGE_CHANGED}
537 *     <li> {@link #ACTION_PACKAGE_REMOVED}
538 *     <li> {@link #ACTION_PACKAGE_RESTARTED}
539 *     <li> {@link #ACTION_PACKAGE_DATA_CLEARED}
540 *     <li> {@link #ACTION_UID_REMOVED}
541 *     <li> {@link #ACTION_BATTERY_CHANGED}
542 *     <li> {@link #ACTION_POWER_CONNECTED}
543 *     <li> {@link #ACTION_POWER_DISCONNECTED}
544 *     <li> {@link #ACTION_SHUTDOWN}
545 * </ul>
546 *
547 * <h3>Standard Categories</h3>
548 *
549 * <p>These are the current standard categories that can be used to further
550 * clarify an Intent via {@link #addCategory}.
551 *
552 * <ul>
553 *     <li> {@link #CATEGORY_DEFAULT}
554 *     <li> {@link #CATEGORY_BROWSABLE}
555 *     <li> {@link #CATEGORY_TAB}
556 *     <li> {@link #CATEGORY_ALTERNATIVE}
557 *     <li> {@link #CATEGORY_SELECTED_ALTERNATIVE}
558 *     <li> {@link #CATEGORY_LAUNCHER}
559 *     <li> {@link #CATEGORY_INFO}
560 *     <li> {@link #CATEGORY_HOME}
561 *     <li> {@link #CATEGORY_PREFERENCE}
562 *     <li> {@link #CATEGORY_TEST}
563 *     <li> {@link #CATEGORY_CAR_DOCK}
564 *     <li> {@link #CATEGORY_DESK_DOCK}
565 *     <li> {@link #CATEGORY_LE_DESK_DOCK}
566 *     <li> {@link #CATEGORY_HE_DESK_DOCK}
567 *     <li> {@link #CATEGORY_CAR_MODE}
568 *     <li> {@link #CATEGORY_APP_MARKET}
569 * </ul>
570 *
571 * <h3>Standard Extra Data</h3>
572 *
573 * <p>These are the current standard fields that can be used as extra data via
574 * {@link #putExtra}.
575 *
576 * <ul>
577 *     <li> {@link #EXTRA_ALARM_COUNT}
578 *     <li> {@link #EXTRA_BCC}
579 *     <li> {@link #EXTRA_CC}
580 *     <li> {@link #EXTRA_CHANGED_COMPONENT_NAME}
581 *     <li> {@link #EXTRA_DATA_REMOVED}
582 *     <li> {@link #EXTRA_DOCK_STATE}
583 *     <li> {@link #EXTRA_DOCK_STATE_HE_DESK}
584 *     <li> {@link #EXTRA_DOCK_STATE_LE_DESK}
585 *     <li> {@link #EXTRA_DOCK_STATE_CAR}
586 *     <li> {@link #EXTRA_DOCK_STATE_DESK}
587 *     <li> {@link #EXTRA_DOCK_STATE_UNDOCKED}
588 *     <li> {@link #EXTRA_DONT_KILL_APP}
589 *     <li> {@link #EXTRA_EMAIL}
590 *     <li> {@link #EXTRA_INITIAL_INTENTS}
591 *     <li> {@link #EXTRA_INTENT}
592 *     <li> {@link #EXTRA_KEY_EVENT}
593 *     <li> {@link #EXTRA_ORIGINATING_URI}
594 *     <li> {@link #EXTRA_PHONE_NUMBER}
595 *     <li> {@link #EXTRA_REFERRER}
596 *     <li> {@link #EXTRA_REMOTE_INTENT_TOKEN}
597 *     <li> {@link #EXTRA_REPLACING}
598 *     <li> {@link #EXTRA_SHORTCUT_ICON}
599 *     <li> {@link #EXTRA_SHORTCUT_ICON_RESOURCE}
600 *     <li> {@link #EXTRA_SHORTCUT_INTENT}
601 *     <li> {@link #EXTRA_STREAM}
602 *     <li> {@link #EXTRA_SHORTCUT_NAME}
603 *     <li> {@link #EXTRA_SUBJECT}
604 *     <li> {@link #EXTRA_TEMPLATE}
605 *     <li> {@link #EXTRA_TEXT}
606 *     <li> {@link #EXTRA_TITLE}
607 *     <li> {@link #EXTRA_UID}
608 * </ul>
609 *
610 * <h3>Flags</h3>
611 *
612 * <p>These are the possible flags that can be used in the Intent via
613 * {@link #setFlags} and {@link #addFlags}.  See {@link #setFlags} for a list
614 * of all possible flags.
615 */
616public class Intent implements Parcelable, Cloneable {
617    private static final String ATTR_ACTION = "action";
618    private static final String TAG_CATEGORIES = "categories";
619    private static final String ATTR_CATEGORY = "category";
620    private static final String TAG_EXTRA = "extra";
621    private static final String ATTR_TYPE = "type";
622    private static final String ATTR_COMPONENT = "component";
623    private static final String ATTR_DATA = "data";
624    private static final String ATTR_FLAGS = "flags";
625
626    // ---------------------------------------------------------------------
627    // ---------------------------------------------------------------------
628    // Standard intent activity actions (see action variable).
629
630    /**
631     *  Activity Action: Start as a main entry point, does not expect to
632     *  receive data.
633     *  <p>Input: nothing
634     *  <p>Output: nothing
635     */
636    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
637    public static final String ACTION_MAIN = "android.intent.action.MAIN";
638
639    /**
640     * Activity Action: Display the data to the user.  This is the most common
641     * action performed on data -- it is the generic action you can use on
642     * a piece of data to get the most reasonable thing to occur.  For example,
643     * when used on a contacts entry it will view the entry; when used on a
644     * mailto: URI it will bring up a compose window filled with the information
645     * supplied by the URI; when used with a tel: URI it will invoke the
646     * dialer.
647     * <p>Input: {@link #getData} is URI from which to retrieve data.
648     * <p>Output: nothing.
649     */
650    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
651    public static final String ACTION_VIEW = "android.intent.action.VIEW";
652
653    /**
654     * A synonym for {@link #ACTION_VIEW}, the "standard" action that is
655     * performed on a piece of data.
656     */
657    public static final String ACTION_DEFAULT = ACTION_VIEW;
658
659    /**
660     * Used to indicate that some piece of data should be attached to some other
661     * place.  For example, image data could be attached to a contact.  It is up
662     * to the recipient to decide where the data should be attached; the intent
663     * does not specify the ultimate destination.
664     * <p>Input: {@link #getData} is URI of data to be attached.
665     * <p>Output: nothing.
666     */
667    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
668    public static final String ACTION_ATTACH_DATA = "android.intent.action.ATTACH_DATA";
669
670    /**
671     * Activity Action: Provide explicit editable access to the given data.
672     * <p>Input: {@link #getData} is URI of data to be edited.
673     * <p>Output: nothing.
674     */
675    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
676    public static final String ACTION_EDIT = "android.intent.action.EDIT";
677
678    /**
679     * Activity Action: Pick an existing item, or insert a new item, and then edit it.
680     * <p>Input: {@link #getType} is the desired MIME type of the item to create or edit.
681     * The extras can contain type specific data to pass through to the editing/creating
682     * activity.
683     * <p>Output: The URI of the item that was picked.  This must be a content:
684     * URI so that any receiver can access it.
685     */
686    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
687    public static final String ACTION_INSERT_OR_EDIT = "android.intent.action.INSERT_OR_EDIT";
688
689    /**
690     * Activity Action: Pick an item from the data, returning what was selected.
691     * <p>Input: {@link #getData} is URI containing a directory of data
692     * (vnd.android.cursor.dir/*) from which to pick an item.
693     * <p>Output: The URI of the item that was picked.
694     */
695    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
696    public static final String ACTION_PICK = "android.intent.action.PICK";
697
698    /**
699     * Activity Action: Creates a shortcut.
700     * <p>Input: Nothing.</p>
701     * <p>Output: An Intent representing the shortcut. The intent must contain three
702     * extras: SHORTCUT_INTENT (value: Intent), SHORTCUT_NAME (value: String),
703     * and SHORTCUT_ICON (value: Bitmap) or SHORTCUT_ICON_RESOURCE
704     * (value: ShortcutIconResource).</p>
705     *
706     * @see #EXTRA_SHORTCUT_INTENT
707     * @see #EXTRA_SHORTCUT_NAME
708     * @see #EXTRA_SHORTCUT_ICON
709     * @see #EXTRA_SHORTCUT_ICON_RESOURCE
710     * @see android.content.Intent.ShortcutIconResource
711     */
712    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
713    public static final String ACTION_CREATE_SHORTCUT = "android.intent.action.CREATE_SHORTCUT";
714
715    /**
716     * The name of the extra used to define the Intent of a shortcut.
717     *
718     * @see #ACTION_CREATE_SHORTCUT
719     */
720    public static final String EXTRA_SHORTCUT_INTENT = "android.intent.extra.shortcut.INTENT";
721    /**
722     * The name of the extra used to define the name of a shortcut.
723     *
724     * @see #ACTION_CREATE_SHORTCUT
725     */
726    public static final String EXTRA_SHORTCUT_NAME = "android.intent.extra.shortcut.NAME";
727    /**
728     * The name of the extra used to define the icon, as a Bitmap, of a shortcut.
729     *
730     * @see #ACTION_CREATE_SHORTCUT
731     */
732    public static final String EXTRA_SHORTCUT_ICON = "android.intent.extra.shortcut.ICON";
733    /**
734     * The name of the extra used to define the icon, as a ShortcutIconResource, of a shortcut.
735     *
736     * @see #ACTION_CREATE_SHORTCUT
737     * @see android.content.Intent.ShortcutIconResource
738     */
739    public static final String EXTRA_SHORTCUT_ICON_RESOURCE =
740            "android.intent.extra.shortcut.ICON_RESOURCE";
741
742    /**
743     * Represents a shortcut/live folder icon resource.
744     *
745     * @see Intent#ACTION_CREATE_SHORTCUT
746     * @see Intent#EXTRA_SHORTCUT_ICON_RESOURCE
747     * @see android.provider.LiveFolders#ACTION_CREATE_LIVE_FOLDER
748     * @see android.provider.LiveFolders#EXTRA_LIVE_FOLDER_ICON
749     */
750    public static class ShortcutIconResource implements Parcelable {
751        /**
752         * The package name of the application containing the icon.
753         */
754        public String packageName;
755
756        /**
757         * The resource name of the icon, including package, name and type.
758         */
759        public String resourceName;
760
761        /**
762         * Creates a new ShortcutIconResource for the specified context and resource
763         * identifier.
764         *
765         * @param context The context of the application.
766         * @param resourceId The resource identifier for the icon.
767         * @return A new ShortcutIconResource with the specified's context package name
768         *         and icon resource identifier.``
769         */
770        public static ShortcutIconResource fromContext(Context context, @AnyRes int resourceId) {
771            ShortcutIconResource icon = new ShortcutIconResource();
772            icon.packageName = context.getPackageName();
773            icon.resourceName = context.getResources().getResourceName(resourceId);
774            return icon;
775        }
776
777        /**
778         * Used to read a ShortcutIconResource from a Parcel.
779         */
780        public static final Parcelable.Creator<ShortcutIconResource> CREATOR =
781            new Parcelable.Creator<ShortcutIconResource>() {
782
783                public ShortcutIconResource createFromParcel(Parcel source) {
784                    ShortcutIconResource icon = new ShortcutIconResource();
785                    icon.packageName = source.readString();
786                    icon.resourceName = source.readString();
787                    return icon;
788                }
789
790                public ShortcutIconResource[] newArray(int size) {
791                    return new ShortcutIconResource[size];
792                }
793            };
794
795        /**
796         * No special parcel contents.
797         */
798        public int describeContents() {
799            return 0;
800        }
801
802        public void writeToParcel(Parcel dest, int flags) {
803            dest.writeString(packageName);
804            dest.writeString(resourceName);
805        }
806
807        @Override
808        public String toString() {
809            return resourceName;
810        }
811    }
812
813    /**
814     * Activity Action: Display an activity chooser, allowing the user to pick
815     * what they want to before proceeding.  This can be used as an alternative
816     * to the standard activity picker that is displayed by the system when
817     * you try to start an activity with multiple possible matches, with these
818     * differences in behavior:
819     * <ul>
820     * <li>You can specify the title that will appear in the activity chooser.
821     * <li>The user does not have the option to make one of the matching
822     * activities a preferred activity, and all possible activities will
823     * always be shown even if one of them is currently marked as the
824     * preferred activity.
825     * </ul>
826     * <p>
827     * This action should be used when the user will naturally expect to
828     * select an activity in order to proceed.  An example if when not to use
829     * it is when the user clicks on a "mailto:" link.  They would naturally
830     * expect to go directly to their mail app, so startActivity() should be
831     * called directly: it will
832     * either launch the current preferred app, or put up a dialog allowing the
833     * user to pick an app to use and optionally marking that as preferred.
834     * <p>
835     * In contrast, if the user is selecting a menu item to send a picture
836     * they are viewing to someone else, there are many different things they
837     * may want to do at this point: send it through e-mail, upload it to a
838     * web service, etc.  In this case the CHOOSER action should be used, to
839     * always present to the user a list of the things they can do, with a
840     * nice title given by the caller such as "Send this photo with:".
841     * <p>
842     * If you need to grant URI permissions through a chooser, you must specify
843     * the permissions to be granted on the ACTION_CHOOSER Intent
844     * <em>in addition</em> to the EXTRA_INTENT inside.  This means using
845     * {@link #setClipData} to specify the URIs to be granted as well as
846     * {@link #FLAG_GRANT_READ_URI_PERMISSION} and/or
847     * {@link #FLAG_GRANT_WRITE_URI_PERMISSION} as appropriate.
848     * <p>
849     * As a convenience, an Intent of this form can be created with the
850     * {@link #createChooser} function.
851     * <p>
852     * Input: No data should be specified.  get*Extra must have
853     * a {@link #EXTRA_INTENT} field containing the Intent being executed,
854     * and can optionally have a {@link #EXTRA_TITLE} field containing the
855     * title text to display in the chooser.
856     * <p>
857     * Output: Depends on the protocol of {@link #EXTRA_INTENT}.
858     */
859    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
860    public static final String ACTION_CHOOSER = "android.intent.action.CHOOSER";
861
862    /**
863     * Convenience function for creating a {@link #ACTION_CHOOSER} Intent.
864     *
865     * <p>Builds a new {@link #ACTION_CHOOSER} Intent that wraps the given
866     * target intent, also optionally supplying a title.  If the target
867     * intent has specified {@link #FLAG_GRANT_READ_URI_PERMISSION} or
868     * {@link #FLAG_GRANT_WRITE_URI_PERMISSION}, then these flags will also be
869     * set in the returned chooser intent, with its ClipData set appropriately:
870     * either a direct reflection of {@link #getClipData()} if that is non-null,
871     * or a new ClipData built from {@link #getData()}.
872     *
873     * @param target The Intent that the user will be selecting an activity
874     * to perform.
875     * @param title Optional title that will be displayed in the chooser.
876     * @return Return a new Intent object that you can hand to
877     * {@link Context#startActivity(Intent) Context.startActivity()} and
878     * related methods.
879     */
880    public static Intent createChooser(Intent target, CharSequence title) {
881        return createChooser(target, title, null);
882    }
883
884    /**
885     * Convenience function for creating a {@link #ACTION_CHOOSER} Intent.
886     *
887     * <p>Builds a new {@link #ACTION_CHOOSER} Intent that wraps the given
888     * target intent, also optionally supplying a title.  If the target
889     * intent has specified {@link #FLAG_GRANT_READ_URI_PERMISSION} or
890     * {@link #FLAG_GRANT_WRITE_URI_PERMISSION}, then these flags will also be
891     * set in the returned chooser intent, with its ClipData set appropriately:
892     * either a direct reflection of {@link #getClipData()} if that is non-null,
893     * or a new ClipData built from {@link #getData()}.</p>
894     *
895     * <p>The caller may optionally supply an {@link IntentSender} to receive a callback
896     * when the user makes a choice. This can be useful if the calling application wants
897     * to remember the last chosen target and surface it as a more prominent or one-touch
898     * affordance elsewhere in the UI for next time.</p>
899     *
900     * @param target The Intent that the user will be selecting an activity
901     * to perform.
902     * @param title Optional title that will be displayed in the chooser.
903     * @param sender Optional IntentSender to be called when a choice is made.
904     * @return Return a new Intent object that you can hand to
905     * {@link Context#startActivity(Intent) Context.startActivity()} and
906     * related methods.
907     */
908    public static Intent createChooser(Intent target, CharSequence title, IntentSender sender) {
909        Intent intent = new Intent(ACTION_CHOOSER);
910        intent.putExtra(EXTRA_INTENT, target);
911        if (title != null) {
912            intent.putExtra(EXTRA_TITLE, title);
913        }
914
915        if (sender != null) {
916            intent.putExtra(EXTRA_CHOSEN_COMPONENT_INTENT_SENDER, sender);
917        }
918
919        // Migrate any clip data and flags from target.
920        int permFlags = target.getFlags() & (FLAG_GRANT_READ_URI_PERMISSION
921                | FLAG_GRANT_WRITE_URI_PERMISSION | FLAG_GRANT_PERSISTABLE_URI_PERMISSION
922                | FLAG_GRANT_PREFIX_URI_PERMISSION);
923        if (permFlags != 0) {
924            ClipData targetClipData = target.getClipData();
925            if (targetClipData == null && target.getData() != null) {
926                ClipData.Item item = new ClipData.Item(target.getData());
927                String[] mimeTypes;
928                if (target.getType() != null) {
929                    mimeTypes = new String[] { target.getType() };
930                } else {
931                    mimeTypes = new String[] { };
932                }
933                targetClipData = new ClipData(null, mimeTypes, item);
934            }
935            if (targetClipData != null) {
936                intent.setClipData(targetClipData);
937                intent.addFlags(permFlags);
938            }
939        }
940
941        return intent;
942    }
943
944    /**
945     * Activity Action: Allow the user to select a particular kind of data and
946     * return it.  This is different than {@link #ACTION_PICK} in that here we
947     * just say what kind of data is desired, not a URI of existing data from
948     * which the user can pick.  An ACTION_GET_CONTENT could allow the user to
949     * create the data as it runs (for example taking a picture or recording a
950     * sound), let them browse over the web and download the desired data,
951     * etc.
952     * <p>
953     * There are two main ways to use this action: if you want a specific kind
954     * of data, such as a person contact, you set the MIME type to the kind of
955     * data you want and launch it with {@link Context#startActivity(Intent)}.
956     * The system will then launch the best application to select that kind
957     * of data for you.
958     * <p>
959     * You may also be interested in any of a set of types of content the user
960     * can pick.  For example, an e-mail application that wants to allow the
961     * user to add an attachment to an e-mail message can use this action to
962     * bring up a list of all of the types of content the user can attach.
963     * <p>
964     * In this case, you should wrap the GET_CONTENT intent with a chooser
965     * (through {@link #createChooser}), which will give the proper interface
966     * for the user to pick how to send your data and allow you to specify
967     * a prompt indicating what they are doing.  You will usually specify a
968     * broad MIME type (such as image/* or {@literal *}/*), resulting in a
969     * broad range of content types the user can select from.
970     * <p>
971     * When using such a broad GET_CONTENT action, it is often desirable to
972     * only pick from data that can be represented as a stream.  This is
973     * accomplished by requiring the {@link #CATEGORY_OPENABLE} in the Intent.
974     * <p>
975     * Callers can optionally specify {@link #EXTRA_LOCAL_ONLY} to request that
976     * the launched content chooser only returns results representing data that
977     * is locally available on the device.  For example, if this extra is set
978     * to true then an image picker should not show any pictures that are available
979     * from a remote server but not already on the local device (thus requiring
980     * they be downloaded when opened).
981     * <p>
982     * If the caller can handle multiple returned items (the user performing
983     * multiple selection), then it can specify {@link #EXTRA_ALLOW_MULTIPLE}
984     * to indicate this.
985     * <p>
986     * Input: {@link #getType} is the desired MIME type to retrieve.  Note
987     * that no URI is supplied in the intent, as there are no constraints on
988     * where the returned data originally comes from.  You may also include the
989     * {@link #CATEGORY_OPENABLE} if you can only accept data that can be
990     * opened as a stream.  You may use {@link #EXTRA_LOCAL_ONLY} to limit content
991     * selection to local data.  You may use {@link #EXTRA_ALLOW_MULTIPLE} to
992     * allow the user to select multiple items.
993     * <p>
994     * Output: The URI of the item that was picked.  This must be a content:
995     * URI so that any receiver can access it.
996     */
997    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
998    public static final String ACTION_GET_CONTENT = "android.intent.action.GET_CONTENT";
999    /**
1000     * Activity Action: Dial a number as specified by the data.  This shows a
1001     * UI with the number being dialed, allowing the user to explicitly
1002     * initiate the call.
1003     * <p>Input: If nothing, an empty dialer is started; else {@link #getData}
1004     * is URI of a phone number to be dialed or a tel: URI of an explicit phone
1005     * number.
1006     * <p>Output: nothing.
1007     */
1008    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1009    public static final String ACTION_DIAL = "android.intent.action.DIAL";
1010    /**
1011     * Activity Action: Perform a call to someone specified by the data.
1012     * <p>Input: If nothing, an empty dialer is started; else {@link #getData}
1013     * is URI of a phone number to be dialed or a tel: URI of an explicit phone
1014     * number.
1015     * <p>Output: nothing.
1016     *
1017     * <p>Note: there will be restrictions on which applications can initiate a
1018     * call; most applications should use the {@link #ACTION_DIAL}.
1019     * <p>Note: this Intent <strong>cannot</strong> be used to call emergency
1020     * numbers.  Applications can <strong>dial</strong> emergency numbers using
1021     * {@link #ACTION_DIAL}, however.
1022     */
1023    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1024    public static final String ACTION_CALL = "android.intent.action.CALL";
1025    /**
1026     * Activity Action: Perform a call to an emergency number specified by the
1027     * data.
1028     * <p>Input: {@link #getData} is URI of a phone number to be dialed or a
1029     * tel: URI of an explicit phone number.
1030     * <p>Output: nothing.
1031     * @hide
1032     */
1033    public static final String ACTION_CALL_EMERGENCY = "android.intent.action.CALL_EMERGENCY";
1034    /**
1035     * Activity action: Perform a call to any number (emergency or not)
1036     * specified by the data.
1037     * <p>Input: {@link #getData} is URI of a phone number to be dialed or a
1038     * tel: URI of an explicit phone number.
1039     * <p>Output: nothing.
1040     * @hide
1041     */
1042    public static final String ACTION_CALL_PRIVILEGED = "android.intent.action.CALL_PRIVILEGED";
1043    /**
1044     * Activity action: Activate the current SIM card.  If SIM cards do not require activation,
1045     * sending this intent is a no-op.
1046     * <p>Input: No data should be specified.  get*Extra may have an optional
1047     * {@link #EXTRA_SIM_ACTIVATION_RESPONSE} field containing a PendingIntent through which to
1048     * send the activation result.
1049     * <p>Output: nothing.
1050     * @hide
1051     */
1052    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1053    public static final String ACTION_SIM_ACTIVATION_REQUEST =
1054            "android.intent.action.SIM_ACTIVATION_REQUEST";
1055    /**
1056     * Activity Action: Send a message to someone specified by the data.
1057     * <p>Input: {@link #getData} is URI describing the target.
1058     * <p>Output: nothing.
1059     */
1060    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1061    public static final String ACTION_SENDTO = "android.intent.action.SENDTO";
1062    /**
1063     * Activity Action: Deliver some data to someone else.  Who the data is
1064     * being delivered to is not specified; it is up to the receiver of this
1065     * action to ask the user where the data should be sent.
1066     * <p>
1067     * When launching a SEND intent, you should usually wrap it in a chooser
1068     * (through {@link #createChooser}), which will give the proper interface
1069     * for the user to pick how to send your data and allow you to specify
1070     * a prompt indicating what they are doing.
1071     * <p>
1072     * Input: {@link #getType} is the MIME type of the data being sent.
1073     * get*Extra can have either a {@link #EXTRA_TEXT}
1074     * or {@link #EXTRA_STREAM} field, containing the data to be sent.  If
1075     * using EXTRA_TEXT, the MIME type should be "text/plain"; otherwise it
1076     * should be the MIME type of the data in EXTRA_STREAM.  Use {@literal *}/*
1077     * if the MIME type is unknown (this will only allow senders that can
1078     * handle generic data streams).  If using {@link #EXTRA_TEXT}, you can
1079     * also optionally supply {@link #EXTRA_HTML_TEXT} for clients to retrieve
1080     * your text with HTML formatting.
1081     * <p>
1082     * As of {@link android.os.Build.VERSION_CODES#JELLY_BEAN}, the data
1083     * being sent can be supplied through {@link #setClipData(ClipData)}.  This
1084     * allows you to use {@link #FLAG_GRANT_READ_URI_PERMISSION} when sharing
1085     * content: URIs and other advanced features of {@link ClipData}.  If
1086     * using this approach, you still must supply the same data through the
1087     * {@link #EXTRA_TEXT} or {@link #EXTRA_STREAM} fields described below
1088     * for compatibility with old applications.  If you don't set a ClipData,
1089     * it will be copied there for you when calling {@link Context#startActivity(Intent)}.
1090     * <p>
1091     * Optional standard extras, which may be interpreted by some recipients as
1092     * appropriate, are: {@link #EXTRA_EMAIL}, {@link #EXTRA_CC},
1093     * {@link #EXTRA_BCC}, {@link #EXTRA_SUBJECT}.
1094     * <p>
1095     * Output: nothing.
1096     */
1097    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1098    public static final String ACTION_SEND = "android.intent.action.SEND";
1099    /**
1100     * Activity Action: Deliver multiple data to someone else.
1101     * <p>
1102     * Like {@link #ACTION_SEND}, except the data is multiple.
1103     * <p>
1104     * Input: {@link #getType} is the MIME type of the data being sent.
1105     * get*ArrayListExtra can have either a {@link #EXTRA_TEXT} or {@link
1106     * #EXTRA_STREAM} field, containing the data to be sent.  If using
1107     * {@link #EXTRA_TEXT}, you can also optionally supply {@link #EXTRA_HTML_TEXT}
1108     * for clients to retrieve your text with HTML formatting.
1109     * <p>
1110     * Multiple types are supported, and receivers should handle mixed types
1111     * whenever possible. The right way for the receiver to check them is to
1112     * use the content resolver on each URI. The intent sender should try to
1113     * put the most concrete mime type in the intent type, but it can fall
1114     * back to {@literal <type>/*} or {@literal *}/* as needed.
1115     * <p>
1116     * e.g. if you are sending image/jpg and image/jpg, the intent's type can
1117     * be image/jpg, but if you are sending image/jpg and image/png, then the
1118     * intent's type should be image/*.
1119     * <p>
1120     * As of {@link android.os.Build.VERSION_CODES#JELLY_BEAN}, the data
1121     * being sent can be supplied through {@link #setClipData(ClipData)}.  This
1122     * allows you to use {@link #FLAG_GRANT_READ_URI_PERMISSION} when sharing
1123     * content: URIs and other advanced features of {@link ClipData}.  If
1124     * using this approach, you still must supply the same data through the
1125     * {@link #EXTRA_TEXT} or {@link #EXTRA_STREAM} fields described below
1126     * for compatibility with old applications.  If you don't set a ClipData,
1127     * it will be copied there for you when calling {@link Context#startActivity(Intent)}.
1128     * <p>
1129     * Optional standard extras, which may be interpreted by some recipients as
1130     * appropriate, are: {@link #EXTRA_EMAIL}, {@link #EXTRA_CC},
1131     * {@link #EXTRA_BCC}, {@link #EXTRA_SUBJECT}.
1132     * <p>
1133     * Output: nothing.
1134     */
1135    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1136    public static final String ACTION_SEND_MULTIPLE = "android.intent.action.SEND_MULTIPLE";
1137    /**
1138     * Activity Action: Handle an incoming phone call.
1139     * <p>Input: nothing.
1140     * <p>Output: nothing.
1141     */
1142    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1143    public static final String ACTION_ANSWER = "android.intent.action.ANSWER";
1144    /**
1145     * Activity Action: Insert an empty item into the given container.
1146     * <p>Input: {@link #getData} is URI of the directory (vnd.android.cursor.dir/*)
1147     * in which to place the data.
1148     * <p>Output: URI of the new data that was created.
1149     */
1150    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1151    public static final String ACTION_INSERT = "android.intent.action.INSERT";
1152    /**
1153     * Activity Action: Create a new item in the given container, initializing it
1154     * from the current contents of the clipboard.
1155     * <p>Input: {@link #getData} is URI of the directory (vnd.android.cursor.dir/*)
1156     * in which to place the data.
1157     * <p>Output: URI of the new data that was created.
1158     */
1159    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1160    public static final String ACTION_PASTE = "android.intent.action.PASTE";
1161    /**
1162     * Activity Action: Delete the given data from its container.
1163     * <p>Input: {@link #getData} is URI of data to be deleted.
1164     * <p>Output: nothing.
1165     */
1166    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1167    public static final String ACTION_DELETE = "android.intent.action.DELETE";
1168    /**
1169     * Activity Action: Run the data, whatever that means.
1170     * <p>Input: ?  (Note: this is currently specific to the test harness.)
1171     * <p>Output: nothing.
1172     */
1173    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1174    public static final String ACTION_RUN = "android.intent.action.RUN";
1175    /**
1176     * Activity Action: Perform a data synchronization.
1177     * <p>Input: ?
1178     * <p>Output: ?
1179     */
1180    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1181    public static final String ACTION_SYNC = "android.intent.action.SYNC";
1182    /**
1183     * Activity Action: Pick an activity given an intent, returning the class
1184     * selected.
1185     * <p>Input: get*Extra field {@link #EXTRA_INTENT} is an Intent
1186     * used with {@link PackageManager#queryIntentActivities} to determine the
1187     * set of activities from which to pick.
1188     * <p>Output: Class name of the activity that was selected.
1189     */
1190    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1191    public static final String ACTION_PICK_ACTIVITY = "android.intent.action.PICK_ACTIVITY";
1192    /**
1193     * Activity Action: Perform a search.
1194     * <p>Input: {@link android.app.SearchManager#QUERY getStringExtra(SearchManager.QUERY)}
1195     * is the text to search for.  If empty, simply
1196     * enter your search results Activity with the search UI activated.
1197     * <p>Output: nothing.
1198     */
1199    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1200    public static final String ACTION_SEARCH = "android.intent.action.SEARCH";
1201    /**
1202     * Activity Action: Start the platform-defined tutorial
1203     * <p>Input: {@link android.app.SearchManager#QUERY getStringExtra(SearchManager.QUERY)}
1204     * is the text to search for.  If empty, simply
1205     * enter your search results Activity with the search UI activated.
1206     * <p>Output: nothing.
1207     */
1208    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1209    public static final String ACTION_SYSTEM_TUTORIAL = "android.intent.action.SYSTEM_TUTORIAL";
1210    /**
1211     * Activity Action: Perform a web search.
1212     * <p>
1213     * Input: {@link android.app.SearchManager#QUERY
1214     * getStringExtra(SearchManager.QUERY)} is the text to search for. If it is
1215     * a url starts with http or https, the site will be opened. If it is plain
1216     * text, Google search will be applied.
1217     * <p>
1218     * Output: nothing.
1219     */
1220    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1221    public static final String ACTION_WEB_SEARCH = "android.intent.action.WEB_SEARCH";
1222
1223    /**
1224     * Activity Action: Perform assist action.
1225     * <p>
1226     * Input: {@link #EXTRA_ASSIST_PACKAGE}, {@link #EXTRA_ASSIST_CONTEXT}, can provide
1227     * additional optional contextual information about where the user was when they
1228     * requested the assist.
1229     * Output: nothing.
1230     */
1231    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1232    public static final String ACTION_ASSIST = "android.intent.action.ASSIST";
1233
1234    /**
1235     * Activity Action: Perform voice assist action.
1236     * <p>
1237     * Input: {@link #EXTRA_ASSIST_PACKAGE}, {@link #EXTRA_ASSIST_CONTEXT}, can provide
1238     * additional optional contextual information about where the user was when they
1239     * requested the voice assist.
1240     * Output: nothing.
1241     * @hide
1242     */
1243    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1244    public static final String ACTION_VOICE_ASSIST = "android.intent.action.VOICE_ASSIST";
1245
1246    /**
1247     * An optional field on {@link #ACTION_ASSIST} containing the name of the current foreground
1248     * application package at the time the assist was invoked.
1249     */
1250    public static final String EXTRA_ASSIST_PACKAGE
1251            = "android.intent.extra.ASSIST_PACKAGE";
1252
1253    /**
1254     * An optional field on {@link #ACTION_ASSIST} containing the uid of the current foreground
1255     * application package at the time the assist was invoked.
1256     */
1257    public static final String EXTRA_ASSIST_UID
1258            = "android.intent.extra.ASSIST_UID";
1259
1260    /**
1261     * An optional field on {@link #ACTION_ASSIST} and containing additional contextual
1262     * information supplied by the current foreground app at the time of the assist request.
1263     * This is a {@link Bundle} of additional data.
1264     */
1265    public static final String EXTRA_ASSIST_CONTEXT
1266            = "android.intent.extra.ASSIST_CONTEXT";
1267
1268    /**
1269     * An optional field on {@link #ACTION_ASSIST} suggesting that the user will likely use a
1270     * keyboard as the primary input device for assistance.
1271     */
1272    public static final String EXTRA_ASSIST_INPUT_HINT_KEYBOARD =
1273            "android.intent.extra.ASSIST_INPUT_HINT_KEYBOARD";
1274
1275    /**
1276     * Activity Action: List all available applications
1277     * <p>Input: Nothing.
1278     * <p>Output: nothing.
1279     */
1280    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1281    public static final String ACTION_ALL_APPS = "android.intent.action.ALL_APPS";
1282    /**
1283     * Activity Action: Show settings for choosing wallpaper
1284     * <p>Input: Nothing.
1285     * <p>Output: Nothing.
1286     */
1287    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1288    public static final String ACTION_SET_WALLPAPER = "android.intent.action.SET_WALLPAPER";
1289
1290    /**
1291     * Activity Action: Show activity for reporting a bug.
1292     * <p>Input: Nothing.
1293     * <p>Output: Nothing.
1294     */
1295    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1296    public static final String ACTION_BUG_REPORT = "android.intent.action.BUG_REPORT";
1297
1298    /**
1299     *  Activity Action: Main entry point for factory tests.  Only used when
1300     *  the device is booting in factory test node.  The implementing package
1301     *  must be installed in the system image.
1302     *  <p>Input: nothing
1303     *  <p>Output: nothing
1304     */
1305    public static final String ACTION_FACTORY_TEST = "android.intent.action.FACTORY_TEST";
1306
1307    /**
1308     * Activity Action: The user pressed the "call" button to go to the dialer
1309     * or other appropriate UI for placing a call.
1310     * <p>Input: Nothing.
1311     * <p>Output: Nothing.
1312     */
1313    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1314    public static final String ACTION_CALL_BUTTON = "android.intent.action.CALL_BUTTON";
1315
1316    /**
1317     * Activity Action: Start Voice Command.
1318     * <p>Input: Nothing.
1319     * <p>Output: Nothing.
1320     */
1321    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1322    public static final String ACTION_VOICE_COMMAND = "android.intent.action.VOICE_COMMAND";
1323
1324    /**
1325     * Activity Action: Start action associated with long pressing on the
1326     * search key.
1327     * <p>Input: Nothing.
1328     * <p>Output: Nothing.
1329     */
1330    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1331    public static final String ACTION_SEARCH_LONG_PRESS = "android.intent.action.SEARCH_LONG_PRESS";
1332
1333    /**
1334     * Activity Action: The user pressed the "Report" button in the crash/ANR dialog.
1335     * This intent is delivered to the package which installed the application, usually
1336     * Google Play.
1337     * <p>Input: No data is specified. The bug report is passed in using
1338     * an {@link #EXTRA_BUG_REPORT} field.
1339     * <p>Output: Nothing.
1340     *
1341     * @see #EXTRA_BUG_REPORT
1342     */
1343    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1344    public static final String ACTION_APP_ERROR = "android.intent.action.APP_ERROR";
1345
1346    /**
1347     * Activity Action: Show power usage information to the user.
1348     * <p>Input: Nothing.
1349     * <p>Output: Nothing.
1350     */
1351    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1352    public static final String ACTION_POWER_USAGE_SUMMARY = "android.intent.action.POWER_USAGE_SUMMARY";
1353
1354    /**
1355     * Activity Action: Setup wizard to launch after a platform update.  This
1356     * activity should have a string meta-data field associated with it,
1357     * {@link #METADATA_SETUP_VERSION}, which defines the current version of
1358     * the platform for setup.  The activity will be launched only if
1359     * {@link android.provider.Settings.Secure#LAST_SETUP_SHOWN} is not the
1360     * same value.
1361     * <p>Input: Nothing.
1362     * <p>Output: Nothing.
1363     * @hide
1364     */
1365    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1366    public static final String ACTION_UPGRADE_SETUP = "android.intent.action.UPGRADE_SETUP";
1367
1368    /**
1369     * Activity Action: Show settings for managing network data usage of a
1370     * specific application. Applications should define an activity that offers
1371     * options to control data usage.
1372     */
1373    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1374    public static final String ACTION_MANAGE_NETWORK_USAGE =
1375            "android.intent.action.MANAGE_NETWORK_USAGE";
1376
1377    /**
1378     * Activity Action: Launch application installer.
1379     * <p>
1380     * Input: The data must be a content: or file: URI at which the application
1381     * can be retrieved.  As of {@link android.os.Build.VERSION_CODES#JELLY_BEAN_MR1},
1382     * you can also use "package:<package-name>" to install an application for the
1383     * current user that is already installed for another user. You can optionally supply
1384     * {@link #EXTRA_INSTALLER_PACKAGE_NAME}, {@link #EXTRA_NOT_UNKNOWN_SOURCE},
1385     * {@link #EXTRA_ALLOW_REPLACE}, and {@link #EXTRA_RETURN_RESULT}.
1386     * <p>
1387     * Output: If {@link #EXTRA_RETURN_RESULT}, returns whether the install
1388     * succeeded.
1389     *
1390     * @see #EXTRA_INSTALLER_PACKAGE_NAME
1391     * @see #EXTRA_NOT_UNKNOWN_SOURCE
1392     * @see #EXTRA_RETURN_RESULT
1393     */
1394    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1395    public static final String ACTION_INSTALL_PACKAGE = "android.intent.action.INSTALL_PACKAGE";
1396
1397    /**
1398     * Used as a string extra field with {@link #ACTION_INSTALL_PACKAGE} to install a
1399     * package.  Specifies the installer package name; this package will receive the
1400     * {@link #ACTION_APP_ERROR} intent.
1401     */
1402    public static final String EXTRA_INSTALLER_PACKAGE_NAME
1403            = "android.intent.extra.INSTALLER_PACKAGE_NAME";
1404
1405    /**
1406     * Used as a boolean extra field with {@link #ACTION_INSTALL_PACKAGE} to install a
1407     * package.  Specifies that the application being installed should not be
1408     * treated as coming from an unknown source, but as coming from the app
1409     * invoking the Intent.  For this to work you must start the installer with
1410     * startActivityForResult().
1411     */
1412    public static final String EXTRA_NOT_UNKNOWN_SOURCE
1413            = "android.intent.extra.NOT_UNKNOWN_SOURCE";
1414
1415    /**
1416     * Used as a URI extra field with {@link #ACTION_INSTALL_PACKAGE} and
1417     * {@link #ACTION_VIEW} to indicate the URI from which the local APK in the Intent
1418     * data field originated from.
1419     */
1420    public static final String EXTRA_ORIGINATING_URI
1421            = "android.intent.extra.ORIGINATING_URI";
1422
1423    /**
1424     * This extra can be used with any Intent used to launch an activity, supplying information
1425     * about who is launching that activity.  This field contains a {@link android.net.Uri}
1426     * object, typically an http: or https: URI of the web site that the referral came from;
1427     * it can also use the {@link #URI_ANDROID_APP_SCHEME android-app:} scheme to identify
1428     * a native application that it came from.
1429     *
1430     * <p>To retrieve this value in a client, use {@link android.app.Activity#getReferrer}
1431     * instead of directly retrieving the extra.  It is also valid for applications to
1432     * instead supply {@link #EXTRA_REFERRER_NAME} for cases where they can only create
1433     * a string, not a Uri; the field here, if supplied, will always take precedence,
1434     * however.</p>
1435     *
1436     * @see #EXTRA_REFERRER_NAME
1437     */
1438    public static final String EXTRA_REFERRER
1439            = "android.intent.extra.REFERRER";
1440
1441    /**
1442     * Alternate version of {@link #EXTRA_REFERRER} that supplies the URI as a String rather
1443     * than a {@link android.net.Uri} object.  Only for use in cases where Uri objects can
1444     * not be created, in particular when Intent extras are supplied through the
1445     * {@link #URI_INTENT_SCHEME intent:} or {@link #URI_ANDROID_APP_SCHEME android-app:}
1446     * schemes.
1447     *
1448     * @see #EXTRA_REFERRER
1449     */
1450    public static final String EXTRA_REFERRER_NAME
1451            = "android.intent.extra.REFERRER_NAME";
1452
1453    /**
1454     * Used as an int extra field with {@link #ACTION_INSTALL_PACKAGE} and
1455     * {@link} #ACTION_VIEW} to indicate the uid of the package that initiated the install
1456     * @hide
1457     */
1458    public static final String EXTRA_ORIGINATING_UID
1459            = "android.intent.extra.ORIGINATING_UID";
1460
1461    /**
1462     * Used as a boolean extra field with {@link #ACTION_INSTALL_PACKAGE} to install a
1463     * package.  Tells the installer UI to skip the confirmation with the user
1464     * if the .apk is replacing an existing one.
1465     * @deprecated As of {@link android.os.Build.VERSION_CODES#JELLY_BEAN}, Android
1466     * will no longer show an interstitial message about updating existing
1467     * applications so this is no longer needed.
1468     */
1469    @Deprecated
1470    public static final String EXTRA_ALLOW_REPLACE
1471            = "android.intent.extra.ALLOW_REPLACE";
1472
1473    /**
1474     * Used as a boolean extra field with {@link #ACTION_INSTALL_PACKAGE} or
1475     * {@link #ACTION_UNINSTALL_PACKAGE}.  Specifies that the installer UI should
1476     * return to the application the result code of the install/uninstall.  The returned result
1477     * code will be {@link android.app.Activity#RESULT_OK} on success or
1478     * {@link android.app.Activity#RESULT_FIRST_USER} on failure.
1479     */
1480    public static final String EXTRA_RETURN_RESULT
1481            = "android.intent.extra.RETURN_RESULT";
1482
1483    /**
1484     * Package manager install result code.  @hide because result codes are not
1485     * yet ready to be exposed.
1486     */
1487    public static final String EXTRA_INSTALL_RESULT
1488            = "android.intent.extra.INSTALL_RESULT";
1489
1490    /**
1491     * Activity Action: Launch application uninstaller.
1492     * <p>
1493     * Input: The data must be a package: URI whose scheme specific part is
1494     * the package name of the current installed package to be uninstalled.
1495     * You can optionally supply {@link #EXTRA_RETURN_RESULT}.
1496     * <p>
1497     * Output: If {@link #EXTRA_RETURN_RESULT}, returns whether the install
1498     * succeeded.
1499     */
1500    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1501    public static final String ACTION_UNINSTALL_PACKAGE = "android.intent.action.UNINSTALL_PACKAGE";
1502
1503    /**
1504     * Specify whether the package should be uninstalled for all users.
1505     * @hide because these should not be part of normal application flow.
1506     */
1507    public static final String EXTRA_UNINSTALL_ALL_USERS
1508            = "android.intent.extra.UNINSTALL_ALL_USERS";
1509
1510    /**
1511     * A string associated with a {@link #ACTION_UPGRADE_SETUP} activity
1512     * describing the last run version of the platform that was setup.
1513     * @hide
1514     */
1515    public static final String METADATA_SETUP_VERSION = "android.SETUP_VERSION";
1516
1517    /**
1518     * Activity action: Launch UI to manage the permissions of an app.
1519     * <p>
1520     * Input: {@link #EXTRA_PACKAGE_NAME} specifies the package whose permissions
1521     * will be managed by the launched UI.
1522     * </p>
1523     * <p>
1524     * Output: Nothing.
1525     * </p>
1526     *
1527     * @see #EXTRA_PACKAGE_NAME
1528     *
1529     * @hide
1530     */
1531    @SystemApi
1532    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1533    public static final String ACTION_MANAGE_APP_PERMISSIONS =
1534            "android.intent.action.MANAGE_APP_PERMISSIONS";
1535
1536    /**
1537     * Intent extra: An app package name.
1538     * <p>
1539     * Type: String
1540     * </p>S
1541     *
1542     * @hide
1543     */
1544    @SystemApi
1545    public static final String EXTRA_PACKAGE_NAME = "android.intent.extra.PACKAGE_NAME";
1546
1547    /**
1548     * Activity action: Launch UI to manage which apps have a given permission.
1549     * <p>
1550     * Input: {@link #EXTRA_PERMISSION_NAME} specifies the permission access
1551     * to which will be managed by the launched UI.
1552     * </p>
1553     * <p>
1554     * Output: Nothing.
1555     * </p>
1556     *
1557     * @see #EXTRA_PERMISSION_NAME
1558     *
1559     * @hide
1560     */
1561    @SystemApi
1562    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1563    public static final String ACTION_MANAGE_PERMISSION_APPS =
1564            "android.intent.action.MANAGE_PERMISSION_APPS";
1565
1566    /**
1567     * Intent extra: The name of a permission.
1568     * <p>
1569     * Type: String
1570     * </p>
1571     *
1572     * @hide
1573     */
1574    @SystemApi
1575    public static final String EXTRA_PERMISSION_NAME = "android.intent.extra.PERMISSION_NAME";
1576
1577    // ---------------------------------------------------------------------
1578    // ---------------------------------------------------------------------
1579    // Standard intent broadcast actions (see action variable).
1580
1581    /**
1582     * Broadcast Action: Sent when the device goes to sleep and becomes non-interactive.
1583     * <p>
1584     * For historical reasons, the name of this broadcast action refers to the power
1585     * state of the screen but it is actually sent in response to changes in the
1586     * overall interactive state of the device.
1587     * </p><p>
1588     * This broadcast is sent when the device becomes non-interactive which may have
1589     * nothing to do with the screen turning off.  To determine the
1590     * actual state of the screen, use {@link android.view.Display#getState}.
1591     * </p><p>
1592     * See {@link android.os.PowerManager#isInteractive} for details.
1593     * </p>
1594     * You <em>cannot</em> receive this through components declared in
1595     * manifests, only by explicitly registering for it with
1596     * {@link Context#registerReceiver(BroadcastReceiver, IntentFilter)
1597     * Context.registerReceiver()}.
1598     *
1599     * <p class="note">This is a protected intent that can only be sent
1600     * by the system.
1601     */
1602    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1603    public static final String ACTION_SCREEN_OFF = "android.intent.action.SCREEN_OFF";
1604
1605    /**
1606     * Broadcast Action: Sent when the device wakes up and becomes interactive.
1607     * <p>
1608     * For historical reasons, the name of this broadcast action refers to the power
1609     * state of the screen but it is actually sent in response to changes in the
1610     * overall interactive state of the device.
1611     * </p><p>
1612     * This broadcast is sent when the device becomes interactive which may have
1613     * nothing to do with the screen turning on.  To determine the
1614     * actual state of the screen, use {@link android.view.Display#getState}.
1615     * </p><p>
1616     * See {@link android.os.PowerManager#isInteractive} for details.
1617     * </p>
1618     * You <em>cannot</em> receive this through components declared in
1619     * manifests, only by explicitly registering for it with
1620     * {@link Context#registerReceiver(BroadcastReceiver, IntentFilter)
1621     * Context.registerReceiver()}.
1622     *
1623     * <p class="note">This is a protected intent that can only be sent
1624     * by the system.
1625     */
1626    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1627    public static final String ACTION_SCREEN_ON = "android.intent.action.SCREEN_ON";
1628
1629    /**
1630     * Broadcast Action: Sent after the system stops dreaming.
1631     *
1632     * <p class="note">This is a protected intent that can only be sent by the system.
1633     * It is only sent to registered receivers.</p>
1634     */
1635    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1636    public static final String ACTION_DREAMING_STOPPED = "android.intent.action.DREAMING_STOPPED";
1637
1638    /**
1639     * Broadcast Action: Sent after the system starts dreaming.
1640     *
1641     * <p class="note">This is a protected intent that can only be sent by the system.
1642     * It is only sent to registered receivers.</p>
1643     */
1644    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1645    public static final String ACTION_DREAMING_STARTED = "android.intent.action.DREAMING_STARTED";
1646
1647    /**
1648     * Broadcast Action: Sent when the user is present after device wakes up (e.g when the
1649     * keyguard is gone).
1650     *
1651     * <p class="note">This is a protected intent that can only be sent
1652     * by the system.
1653     */
1654    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1655    public static final String ACTION_USER_PRESENT = "android.intent.action.USER_PRESENT";
1656
1657    /**
1658     * Broadcast Action: The current time has changed.  Sent every
1659     * minute.  You <em>cannot</em> receive this through components declared
1660     * in manifests, only by explicitly registering for it with
1661     * {@link Context#registerReceiver(BroadcastReceiver, IntentFilter)
1662     * Context.registerReceiver()}.
1663     *
1664     * <p class="note">This is a protected intent that can only be sent
1665     * by the system.
1666     */
1667    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1668    public static final String ACTION_TIME_TICK = "android.intent.action.TIME_TICK";
1669    /**
1670     * Broadcast Action: The time was set.
1671     */
1672    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1673    public static final String ACTION_TIME_CHANGED = "android.intent.action.TIME_SET";
1674    /**
1675     * Broadcast Action: The date has changed.
1676     */
1677    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1678    public static final String ACTION_DATE_CHANGED = "android.intent.action.DATE_CHANGED";
1679    /**
1680     * Broadcast Action: The timezone has changed. The intent will have the following extra values:</p>
1681     * <ul>
1682     *   <li><em>time-zone</em> - The java.util.TimeZone.getID() value identifying the new time zone.</li>
1683     * </ul>
1684     *
1685     * <p class="note">This is a protected intent that can only be sent
1686     * by the system.
1687     */
1688    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1689    public static final String ACTION_TIMEZONE_CHANGED = "android.intent.action.TIMEZONE_CHANGED";
1690    /**
1691     * Clear DNS Cache Action: This is broadcast when networks have changed and old
1692     * DNS entries should be tossed.
1693     * @hide
1694     */
1695    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1696    public static final String ACTION_CLEAR_DNS_CACHE = "android.intent.action.CLEAR_DNS_CACHE";
1697    /**
1698     * Alarm Changed Action: This is broadcast when the AlarmClock
1699     * application's alarm is set or unset.  It is used by the
1700     * AlarmClock application and the StatusBar service.
1701     * @hide
1702     */
1703    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1704    public static final String ACTION_ALARM_CHANGED = "android.intent.action.ALARM_CHANGED";
1705    /**
1706     * Sync State Changed Action: This is broadcast when the sync starts or stops or when one has
1707     * been failing for a long time.  It is used by the SyncManager and the StatusBar service.
1708     * @hide
1709     */
1710    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1711    public static final String ACTION_SYNC_STATE_CHANGED
1712            = "android.intent.action.SYNC_STATE_CHANGED";
1713    /**
1714     * Broadcast Action: This is broadcast once, after the system has finished
1715     * booting.  It can be used to perform application-specific initialization,
1716     * such as installing alarms.  You must hold the
1717     * {@link android.Manifest.permission#RECEIVE_BOOT_COMPLETED} permission
1718     * in order to receive this broadcast.
1719     *
1720     * <p class="note">This is a protected intent that can only be sent
1721     * by the system.
1722     */
1723    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1724    public static final String ACTION_BOOT_COMPLETED = "android.intent.action.BOOT_COMPLETED";
1725    /**
1726     * Broadcast Action: This is broadcast when a user action should request a
1727     * temporary system dialog to dismiss.  Some examples of temporary system
1728     * dialogs are the notification window-shade and the recent tasks dialog.
1729     */
1730    public static final String ACTION_CLOSE_SYSTEM_DIALOGS = "android.intent.action.CLOSE_SYSTEM_DIALOGS";
1731    /**
1732     * Broadcast Action: Trigger the download and eventual installation
1733     * of a package.
1734     * <p>Input: {@link #getData} is the URI of the package file to download.
1735     *
1736     * <p class="note">This is a protected intent that can only be sent
1737     * by the system.
1738     *
1739     * @deprecated This constant has never been used.
1740     */
1741    @Deprecated
1742    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1743    public static final String ACTION_PACKAGE_INSTALL = "android.intent.action.PACKAGE_INSTALL";
1744    /**
1745     * Broadcast Action: A new application package has been installed on the
1746     * device. The data contains the name of the package.  Note that the
1747     * newly installed package does <em>not</em> receive this broadcast.
1748     * <p>May include the following extras:
1749     * <ul>
1750     * <li> {@link #EXTRA_UID} containing the integer uid assigned to the new package.
1751     * <li> {@link #EXTRA_REPLACING} is set to true if this is following
1752     * an {@link #ACTION_PACKAGE_REMOVED} broadcast for the same package.
1753     * </ul>
1754     *
1755     * <p class="note">This is a protected intent that can only be sent
1756     * by the system.
1757     */
1758    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1759    public static final String ACTION_PACKAGE_ADDED = "android.intent.action.PACKAGE_ADDED";
1760    /**
1761     * Broadcast Action: A new version of an application package has been
1762     * installed, replacing an existing version that was previously installed.
1763     * The data contains the name of the package.
1764     * <p>May include the following extras:
1765     * <ul>
1766     * <li> {@link #EXTRA_UID} containing the integer uid assigned to the new package.
1767     * </ul>
1768     *
1769     * <p class="note">This is a protected intent that can only be sent
1770     * by the system.
1771     */
1772    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1773    public static final String ACTION_PACKAGE_REPLACED = "android.intent.action.PACKAGE_REPLACED";
1774    /**
1775     * Broadcast Action: A new version of your application has been installed
1776     * over an existing one.  This is only sent to the application that was
1777     * replaced.  It does not contain any additional data; to receive it, just
1778     * use an intent filter for this action.
1779     *
1780     * <p class="note">This is a protected intent that can only be sent
1781     * by the system.
1782     */
1783    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1784    public static final String ACTION_MY_PACKAGE_REPLACED = "android.intent.action.MY_PACKAGE_REPLACED";
1785    /**
1786     * Broadcast Action: An existing application package has been removed from
1787     * the device.  The data contains the name of the package.  The package
1788     * that is being installed does <em>not</em> receive this Intent.
1789     * <ul>
1790     * <li> {@link #EXTRA_UID} containing the integer uid previously assigned
1791     * to the package.
1792     * <li> {@link #EXTRA_DATA_REMOVED} is set to true if the entire
1793     * application -- data and code -- is being removed.
1794     * <li> {@link #EXTRA_REPLACING} is set to true if this will be followed
1795     * by an {@link #ACTION_PACKAGE_ADDED} broadcast for the same package.
1796     * </ul>
1797     *
1798     * <p class="note">This is a protected intent that can only be sent
1799     * by the system.
1800     */
1801    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1802    public static final String ACTION_PACKAGE_REMOVED = "android.intent.action.PACKAGE_REMOVED";
1803    /**
1804     * Broadcast Action: An existing application package has been completely
1805     * removed from the device.  The data contains the name of the package.
1806     * This is like {@link #ACTION_PACKAGE_REMOVED}, but only set when
1807     * {@link #EXTRA_DATA_REMOVED} is true and
1808     * {@link #EXTRA_REPLACING} is false of that broadcast.
1809     *
1810     * <ul>
1811     * <li> {@link #EXTRA_UID} containing the integer uid previously assigned
1812     * to the package.
1813     * </ul>
1814     *
1815     * <p class="note">This is a protected intent that can only be sent
1816     * by the system.
1817     */
1818    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1819    public static final String ACTION_PACKAGE_FULLY_REMOVED
1820            = "android.intent.action.PACKAGE_FULLY_REMOVED";
1821    /**
1822     * Broadcast Action: An existing application package has been changed (e.g.
1823     * a component has been enabled or disabled).  The data contains the name of
1824     * the package.
1825     * <ul>
1826     * <li> {@link #EXTRA_UID} containing the integer uid assigned to the package.
1827     * <li> {@link #EXTRA_CHANGED_COMPONENT_NAME_LIST} containing the class name
1828     * of the changed components (or the package name itself).
1829     * <li> {@link #EXTRA_DONT_KILL_APP} containing boolean field to override the
1830     * default action of restarting the application.
1831     * </ul>
1832     *
1833     * <p class="note">This is a protected intent that can only be sent
1834     * by the system.
1835     */
1836    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1837    public static final String ACTION_PACKAGE_CHANGED = "android.intent.action.PACKAGE_CHANGED";
1838    /**
1839     * @hide
1840     * Broadcast Action: Ask system services if there is any reason to
1841     * restart the given package.  The data contains the name of the
1842     * package.
1843     * <ul>
1844     * <li> {@link #EXTRA_UID} containing the integer uid assigned to the package.
1845     * <li> {@link #EXTRA_PACKAGES} String array of all packages to check.
1846     * </ul>
1847     *
1848     * <p class="note">This is a protected intent that can only be sent
1849     * by the system.
1850     */
1851    @SystemApi
1852    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1853    public static final String ACTION_QUERY_PACKAGE_RESTART = "android.intent.action.QUERY_PACKAGE_RESTART";
1854    /**
1855     * Broadcast Action: The user has restarted a package, and all of its
1856     * processes have been killed.  All runtime state
1857     * associated with it (processes, alarms, notifications, etc) should
1858     * be removed.  Note that the restarted package does <em>not</em>
1859     * receive this broadcast.
1860     * The data contains the name of the package.
1861     * <ul>
1862     * <li> {@link #EXTRA_UID} containing the integer uid assigned to the package.
1863     * </ul>
1864     *
1865     * <p class="note">This is a protected intent that can only be sent
1866     * by the system.
1867     */
1868    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1869    public static final String ACTION_PACKAGE_RESTARTED = "android.intent.action.PACKAGE_RESTARTED";
1870    /**
1871     * Broadcast Action: The user has cleared the data of a package.  This should
1872     * be preceded by {@link #ACTION_PACKAGE_RESTARTED}, after which all of
1873     * its persistent data is erased and this broadcast sent.
1874     * Note that the cleared package does <em>not</em>
1875     * receive this broadcast. The data contains the name of the package.
1876     * <ul>
1877     * <li> {@link #EXTRA_UID} containing the integer uid assigned to the package.
1878     * </ul>
1879     *
1880     * <p class="note">This is a protected intent that can only be sent
1881     * by the system.
1882     */
1883    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1884    public static final String ACTION_PACKAGE_DATA_CLEARED = "android.intent.action.PACKAGE_DATA_CLEARED";
1885    /**
1886     * Broadcast Action: A user ID has been removed from the system.  The user
1887     * ID number is stored in the extra data under {@link #EXTRA_UID}.
1888     *
1889     * <p class="note">This is a protected intent that can only be sent
1890     * by the system.
1891     */
1892    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1893    public static final String ACTION_UID_REMOVED = "android.intent.action.UID_REMOVED";
1894
1895    /**
1896     * Broadcast Action: Sent to the installer package of an application
1897     * when that application is first launched (that is the first time it
1898     * is moved out of the stopped state).  The data contains the name of the package.
1899     *
1900     * <p class="note">This is a protected intent that can only be sent
1901     * by the system.
1902     */
1903    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1904    public static final String ACTION_PACKAGE_FIRST_LAUNCH = "android.intent.action.PACKAGE_FIRST_LAUNCH";
1905
1906    /**
1907     * Broadcast Action: Sent to the system package verifier when a package
1908     * needs to be verified. The data contains the package URI.
1909     * <p class="note">
1910     * This is a protected intent that can only be sent by the system.
1911     * </p>
1912     */
1913    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1914    public static final String ACTION_PACKAGE_NEEDS_VERIFICATION = "android.intent.action.PACKAGE_NEEDS_VERIFICATION";
1915
1916    /**
1917     * Broadcast Action: Sent to the system package verifier when a package is
1918     * verified. The data contains the package URI.
1919     * <p class="note">
1920     * This is a protected intent that can only be sent by the system.
1921     */
1922    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1923    public static final String ACTION_PACKAGE_VERIFIED = "android.intent.action.PACKAGE_VERIFIED";
1924
1925    /**
1926     * Broadcast Action: Sent to the system intent filter verifier when an intent filter
1927     * needs to be verified. The data contains the filter data hosts to be verified against.
1928     * <p class="note">
1929     * This is a protected intent that can only be sent by the system.
1930     * </p>
1931     *
1932     * @hide
1933     */
1934    @SystemApi
1935    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1936    public static final String ACTION_INTENT_FILTER_NEEDS_VERIFICATION = "android.intent.action.INTENT_FILTER_NEEDS_VERIFICATION";
1937
1938    /**
1939     * Broadcast Action: Resources for a set of packages (which were
1940     * previously unavailable) are currently
1941     * available since the media on which they exist is available.
1942     * The extra data {@link #EXTRA_CHANGED_PACKAGE_LIST} contains a
1943     * list of packages whose availability changed.
1944     * The extra data {@link #EXTRA_CHANGED_UID_LIST} contains a
1945     * list of uids of packages whose availability changed.
1946     * Note that the
1947     * packages in this list do <em>not</em> receive this broadcast.
1948     * The specified set of packages are now available on the system.
1949     * <p>Includes the following extras:
1950     * <ul>
1951     * <li> {@link #EXTRA_CHANGED_PACKAGE_LIST} is the set of packages
1952     * whose resources(were previously unavailable) are currently available.
1953     * {@link #EXTRA_CHANGED_UID_LIST} is the set of uids of the
1954     * packages whose resources(were previously unavailable)
1955     * are  currently available.
1956     * </ul>
1957     *
1958     * <p class="note">This is a protected intent that can only be sent
1959     * by the system.
1960     */
1961    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1962    public static final String ACTION_EXTERNAL_APPLICATIONS_AVAILABLE =
1963        "android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE";
1964
1965    /**
1966     * Broadcast Action: Resources for a set of packages are currently
1967     * unavailable since the media on which they exist is unavailable.
1968     * The extra data {@link #EXTRA_CHANGED_PACKAGE_LIST} contains a
1969     * list of packages whose availability changed.
1970     * The extra data {@link #EXTRA_CHANGED_UID_LIST} contains a
1971     * list of uids of packages whose availability changed.
1972     * The specified set of packages can no longer be
1973     * launched and are practically unavailable on the system.
1974     * <p>Inclues the following extras:
1975     * <ul>
1976     * <li> {@link #EXTRA_CHANGED_PACKAGE_LIST} is the set of packages
1977     * whose resources are no longer available.
1978     * {@link #EXTRA_CHANGED_UID_LIST} is the set of packages
1979     * whose resources are no longer available.
1980     * </ul>
1981     *
1982     * <p class="note">This is a protected intent that can only be sent
1983     * by the system.
1984     */
1985    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1986    public static final String ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE =
1987        "android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE";
1988
1989    /**
1990     * Broadcast Action:  The current system wallpaper has changed.  See
1991     * {@link android.app.WallpaperManager} for retrieving the new wallpaper.
1992     * This should <em>only</em> be used to determine when the wallpaper
1993     * has changed to show the new wallpaper to the user.  You should certainly
1994     * never, in response to this, change the wallpaper or other attributes of
1995     * it such as the suggested size.  That would be crazy, right?  You'd cause
1996     * all kinds of loops, especially if other apps are doing similar things,
1997     * right?  Of course.  So please don't do this.
1998     *
1999     * @deprecated Modern applications should use
2000     * {@link android.view.WindowManager.LayoutParams#FLAG_SHOW_WALLPAPER
2001     * WindowManager.LayoutParams.FLAG_SHOW_WALLPAPER} to have the wallpaper
2002     * shown behind their UI, rather than watching for this broadcast and
2003     * rendering the wallpaper on their own.
2004     */
2005    @Deprecated @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2006    public static final String ACTION_WALLPAPER_CHANGED = "android.intent.action.WALLPAPER_CHANGED";
2007    /**
2008     * Broadcast Action: The current device {@link android.content.res.Configuration}
2009     * (orientation, locale, etc) has changed.  When such a change happens, the
2010     * UIs (view hierarchy) will need to be rebuilt based on this new
2011     * information; for the most part, applications don't need to worry about
2012     * this, because the system will take care of stopping and restarting the
2013     * application to make sure it sees the new changes.  Some system code that
2014     * can not be restarted will need to watch for this action and handle it
2015     * appropriately.
2016     *
2017     * <p class="note">
2018     * You <em>cannot</em> receive this through components declared
2019     * in manifests, only by explicitly registering for it with
2020     * {@link Context#registerReceiver(BroadcastReceiver, IntentFilter)
2021     * Context.registerReceiver()}.
2022     *
2023     * <p class="note">This is a protected intent that can only be sent
2024     * by the system.
2025     *
2026     * @see android.content.res.Configuration
2027     */
2028    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2029    public static final String ACTION_CONFIGURATION_CHANGED = "android.intent.action.CONFIGURATION_CHANGED";
2030    /**
2031     * Broadcast Action: The current device's locale has changed.
2032     *
2033     * <p class="note">This is a protected intent that can only be sent
2034     * by the system.
2035     */
2036    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2037    public static final String ACTION_LOCALE_CHANGED = "android.intent.action.LOCALE_CHANGED";
2038    /**
2039     * Broadcast Action:  This is a <em>sticky broadcast</em> containing the
2040     * charging state, level, and other information about the battery.
2041     * See {@link android.os.BatteryManager} for documentation on the
2042     * contents of the Intent.
2043     *
2044     * <p class="note">
2045     * You <em>cannot</em> receive this through components declared
2046     * in manifests, only by explicitly registering for it with
2047     * {@link Context#registerReceiver(BroadcastReceiver, IntentFilter)
2048     * Context.registerReceiver()}.  See {@link #ACTION_BATTERY_LOW},
2049     * {@link #ACTION_BATTERY_OKAY}, {@link #ACTION_POWER_CONNECTED},
2050     * and {@link #ACTION_POWER_DISCONNECTED} for distinct battery-related
2051     * broadcasts that are sent and can be received through manifest
2052     * receivers.
2053     *
2054     * <p class="note">This is a protected intent that can only be sent
2055     * by the system.
2056     */
2057    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2058    public static final String ACTION_BATTERY_CHANGED = "android.intent.action.BATTERY_CHANGED";
2059    /**
2060     * Broadcast Action:  Indicates low battery condition on the device.
2061     * This broadcast corresponds to the "Low battery warning" system dialog.
2062     *
2063     * <p class="note">This is a protected intent that can only be sent
2064     * by the system.
2065     */
2066    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2067    public static final String ACTION_BATTERY_LOW = "android.intent.action.BATTERY_LOW";
2068    /**
2069     * Broadcast Action:  Indicates the battery is now okay after being low.
2070     * This will be sent after {@link #ACTION_BATTERY_LOW} once the battery has
2071     * gone back up to an okay state.
2072     *
2073     * <p class="note">This is a protected intent that can only be sent
2074     * by the system.
2075     */
2076    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2077    public static final String ACTION_BATTERY_OKAY = "android.intent.action.BATTERY_OKAY";
2078    /**
2079     * Broadcast Action:  External power has been connected to the device.
2080     * This is intended for applications that wish to register specifically to this notification.
2081     * Unlike ACTION_BATTERY_CHANGED, applications will be woken for this and so do not have to
2082     * stay active to receive this notification.  This action can be used to implement actions
2083     * that wait until power is available to trigger.
2084     *
2085     * <p class="note">This is a protected intent that can only be sent
2086     * by the system.
2087     */
2088    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2089    public static final String ACTION_POWER_CONNECTED = "android.intent.action.ACTION_POWER_CONNECTED";
2090    /**
2091     * Broadcast Action:  External power has been removed from the device.
2092     * This is intended for applications that wish to register specifically to this notification.
2093     * Unlike ACTION_BATTERY_CHANGED, applications will be woken for this and so do not have to
2094     * stay active to receive this notification.  This action can be used to implement actions
2095     * that wait until power is available to trigger.
2096     *
2097     * <p class="note">This is a protected intent that can only be sent
2098     * by the system.
2099     */
2100    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2101    public static final String ACTION_POWER_DISCONNECTED =
2102            "android.intent.action.ACTION_POWER_DISCONNECTED";
2103    /**
2104     * Broadcast Action:  Device is shutting down.
2105     * This is broadcast when the device is being shut down (completely turned
2106     * off, not sleeping).  Once the broadcast is complete, the final shutdown
2107     * will proceed and all unsaved data lost.  Apps will not normally need
2108     * to handle this, since the foreground activity will be paused as well.
2109     *
2110     * <p class="note">This is a protected intent that can only be sent
2111     * by the system.
2112     * <p>May include the following extras:
2113     * <ul>
2114     * <li> {@link #EXTRA_SHUTDOWN_USERSPACE_ONLY} a boolean that is set to true if this
2115     * shutdown is only for userspace processes.  If not set, assumed to be false.
2116     * </ul>
2117     */
2118    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2119    public static final String ACTION_SHUTDOWN = "android.intent.action.ACTION_SHUTDOWN";
2120    /**
2121     * Activity Action:  Start this activity to request system shutdown.
2122     * The optional boolean extra field {@link #EXTRA_KEY_CONFIRM} can be set to true
2123     * to request confirmation from the user before shutting down.
2124     *
2125     * <p class="note">This is a protected intent that can only be sent
2126     * by the system.
2127     *
2128     * {@hide}
2129     */
2130    public static final String ACTION_REQUEST_SHUTDOWN = "android.intent.action.ACTION_REQUEST_SHUTDOWN";
2131    /**
2132     * Broadcast Action:  A sticky broadcast that indicates low memory
2133     * condition on the device
2134     *
2135     * <p class="note">This is a protected intent that can only be sent
2136     * by the system.
2137     */
2138    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2139    public static final String ACTION_DEVICE_STORAGE_LOW = "android.intent.action.DEVICE_STORAGE_LOW";
2140    /**
2141     * Broadcast Action:  Indicates low memory condition on the device no longer exists
2142     *
2143     * <p class="note">This is a protected intent that can only be sent
2144     * by the system.
2145     */
2146    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2147    public static final String ACTION_DEVICE_STORAGE_OK = "android.intent.action.DEVICE_STORAGE_OK";
2148    /**
2149     * Broadcast Action:  A sticky broadcast that indicates a memory full
2150     * condition on the device. This is intended for activities that want
2151     * to be able to fill the data partition completely, leaving only
2152     * enough free space to prevent system-wide SQLite failures.
2153     *
2154     * <p class="note">This is a protected intent that can only be sent
2155     * by the system.
2156     *
2157     * {@hide}
2158     */
2159    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2160    public static final String ACTION_DEVICE_STORAGE_FULL = "android.intent.action.DEVICE_STORAGE_FULL";
2161    /**
2162     * Broadcast Action:  Indicates memory full condition on the device
2163     * no longer exists.
2164     *
2165     * <p class="note">This is a protected intent that can only be sent
2166     * by the system.
2167     *
2168     * {@hide}
2169     */
2170    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2171    public static final String ACTION_DEVICE_STORAGE_NOT_FULL = "android.intent.action.DEVICE_STORAGE_NOT_FULL";
2172    /**
2173     * Broadcast Action:  Indicates low memory condition notification acknowledged by user
2174     * and package management should be started.
2175     * This is triggered by the user from the ACTION_DEVICE_STORAGE_LOW
2176     * notification.
2177     */
2178    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2179    public static final String ACTION_MANAGE_PACKAGE_STORAGE = "android.intent.action.MANAGE_PACKAGE_STORAGE";
2180    /**
2181     * Broadcast Action:  The device has entered USB Mass Storage mode.
2182     * This is used mainly for the USB Settings panel.
2183     * Apps should listen for ACTION_MEDIA_MOUNTED and ACTION_MEDIA_UNMOUNTED broadcasts to be notified
2184     * when the SD card file system is mounted or unmounted
2185     * @deprecated replaced by android.os.storage.StorageEventListener
2186     */
2187    @Deprecated
2188    public static final String ACTION_UMS_CONNECTED = "android.intent.action.UMS_CONNECTED";
2189
2190    /**
2191     * Broadcast Action:  The device has exited USB Mass Storage mode.
2192     * This is used mainly for the USB Settings panel.
2193     * Apps should listen for ACTION_MEDIA_MOUNTED and ACTION_MEDIA_UNMOUNTED broadcasts to be notified
2194     * when the SD card file system is mounted or unmounted
2195     * @deprecated replaced by android.os.storage.StorageEventListener
2196     */
2197    @Deprecated
2198    public static final String ACTION_UMS_DISCONNECTED = "android.intent.action.UMS_DISCONNECTED";
2199
2200    /**
2201     * Broadcast Action:  External media has been removed.
2202     * The path to the mount point for the removed media is contained in the Intent.mData field.
2203     */
2204    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2205    public static final String ACTION_MEDIA_REMOVED = "android.intent.action.MEDIA_REMOVED";
2206
2207    /**
2208     * Broadcast Action:  External media is present, but not mounted at its mount point.
2209     * The path to the mount point for the unmounted media is contained in the Intent.mData field.
2210     */
2211    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2212    public static final String ACTION_MEDIA_UNMOUNTED = "android.intent.action.MEDIA_UNMOUNTED";
2213
2214    /**
2215     * Broadcast Action:  External media is present, and being disk-checked
2216     * The path to the mount point for the checking media is contained in the Intent.mData field.
2217     */
2218    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2219    public static final String ACTION_MEDIA_CHECKING = "android.intent.action.MEDIA_CHECKING";
2220
2221    /**
2222     * Broadcast Action:  External media is present, but is using an incompatible fs (or is blank)
2223     * The path to the mount point for the checking media is contained in the Intent.mData field.
2224     */
2225    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2226    public static final String ACTION_MEDIA_NOFS = "android.intent.action.MEDIA_NOFS";
2227
2228    /**
2229     * Broadcast Action:  External media is present and mounted at its mount point.
2230     * The path to the mount point for the mounted media is contained in the Intent.mData field.
2231     * The Intent contains an extra with name "read-only" and Boolean value to indicate if the
2232     * media was mounted read only.
2233     */
2234    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2235    public static final String ACTION_MEDIA_MOUNTED = "android.intent.action.MEDIA_MOUNTED";
2236
2237    /**
2238     * Broadcast Action:  External media is unmounted because it is being shared via USB mass storage.
2239     * The path to the mount point for the shared media is contained in the Intent.mData field.
2240     */
2241    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2242    public static final String ACTION_MEDIA_SHARED = "android.intent.action.MEDIA_SHARED";
2243
2244    /**
2245     * Broadcast Action:  External media is no longer being shared via USB mass storage.
2246     * The path to the mount point for the previously shared media is contained in the Intent.mData field.
2247     *
2248     * @hide
2249     */
2250    public static final String ACTION_MEDIA_UNSHARED = "android.intent.action.MEDIA_UNSHARED";
2251
2252    /**
2253     * Broadcast Action:  External media was removed from SD card slot, but mount point was not unmounted.
2254     * The path to the mount point for the removed media is contained in the Intent.mData field.
2255     */
2256    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2257    public static final String ACTION_MEDIA_BAD_REMOVAL = "android.intent.action.MEDIA_BAD_REMOVAL";
2258
2259    /**
2260     * Broadcast Action:  External media is present but cannot be mounted.
2261     * The path to the mount point for the unmountable media is contained in the Intent.mData field.
2262     */
2263    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2264    public static final String ACTION_MEDIA_UNMOUNTABLE = "android.intent.action.MEDIA_UNMOUNTABLE";
2265
2266   /**
2267     * Broadcast Action:  User has expressed the desire to remove the external storage media.
2268     * Applications should close all files they have open within the mount point when they receive this intent.
2269     * The path to the mount point for the media to be ejected is contained in the Intent.mData field.
2270     */
2271    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2272    public static final String ACTION_MEDIA_EJECT = "android.intent.action.MEDIA_EJECT";
2273
2274    /**
2275     * Broadcast Action:  The media scanner has started scanning a directory.
2276     * The path to the directory being scanned is contained in the Intent.mData field.
2277     */
2278    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2279    public static final String ACTION_MEDIA_SCANNER_STARTED = "android.intent.action.MEDIA_SCANNER_STARTED";
2280
2281   /**
2282     * Broadcast Action:  The media scanner has finished scanning a directory.
2283     * The path to the scanned directory is contained in the Intent.mData field.
2284     */
2285    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2286    public static final String ACTION_MEDIA_SCANNER_FINISHED = "android.intent.action.MEDIA_SCANNER_FINISHED";
2287
2288   /**
2289     * Broadcast Action:  Request the media scanner to scan a file and add it to the media database.
2290     * The path to the file is contained in the Intent.mData field.
2291     */
2292    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2293    public static final String ACTION_MEDIA_SCANNER_SCAN_FILE = "android.intent.action.MEDIA_SCANNER_SCAN_FILE";
2294
2295   /**
2296     * Broadcast Action:  The "Media Button" was pressed.  Includes a single
2297     * extra field, {@link #EXTRA_KEY_EVENT}, containing the key event that
2298     * caused the broadcast.
2299     */
2300    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2301    public static final String ACTION_MEDIA_BUTTON = "android.intent.action.MEDIA_BUTTON";
2302
2303    /**
2304     * Broadcast Action:  The "Camera Button" was pressed.  Includes a single
2305     * extra field, {@link #EXTRA_KEY_EVENT}, containing the key event that
2306     * caused the broadcast.
2307     */
2308    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2309    public static final String ACTION_CAMERA_BUTTON = "android.intent.action.CAMERA_BUTTON";
2310
2311    // *** NOTE: @todo(*) The following really should go into a more domain-specific
2312    // location; they are not general-purpose actions.
2313
2314    /**
2315     * Broadcast Action: A GTalk connection has been established.
2316     */
2317    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2318    public static final String ACTION_GTALK_SERVICE_CONNECTED =
2319            "android.intent.action.GTALK_CONNECTED";
2320
2321    /**
2322     * Broadcast Action: A GTalk connection has been disconnected.
2323     */
2324    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2325    public static final String ACTION_GTALK_SERVICE_DISCONNECTED =
2326            "android.intent.action.GTALK_DISCONNECTED";
2327
2328    /**
2329     * Broadcast Action: An input method has been changed.
2330     */
2331    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2332    public static final String ACTION_INPUT_METHOD_CHANGED =
2333            "android.intent.action.INPUT_METHOD_CHANGED";
2334
2335    /**
2336     * <p>Broadcast Action: The user has switched the phone into or out of Airplane Mode. One or
2337     * more radios have been turned off or on. The intent will have the following extra value:</p>
2338     * <ul>
2339     *   <li><em>state</em> - A boolean value indicating whether Airplane Mode is on. If true,
2340     *   then cell radio and possibly other radios such as bluetooth or WiFi may have also been
2341     *   turned off</li>
2342     * </ul>
2343     *
2344     * <p class="note">This is a protected intent that can only be sent
2345     * by the system.
2346     */
2347    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2348    public static final String ACTION_AIRPLANE_MODE_CHANGED = "android.intent.action.AIRPLANE_MODE";
2349
2350    /**
2351     * Broadcast Action: Some content providers have parts of their namespace
2352     * where they publish new events or items that the user may be especially
2353     * interested in. For these things, they may broadcast this action when the
2354     * set of interesting items change.
2355     *
2356     * For example, GmailProvider sends this notification when the set of unread
2357     * mail in the inbox changes.
2358     *
2359     * <p>The data of the intent identifies which part of which provider
2360     * changed. When queried through the content resolver, the data URI will
2361     * return the data set in question.
2362     *
2363     * <p>The intent will have the following extra values:
2364     * <ul>
2365     *   <li><em>count</em> - The number of items in the data set. This is the
2366     *       same as the number of items in the cursor returned by querying the
2367     *       data URI. </li>
2368     * </ul>
2369     *
2370     * This intent will be sent at boot (if the count is non-zero) and when the
2371     * data set changes. It is possible for the data set to change without the
2372     * count changing (for example, if a new unread message arrives in the same
2373     * sync operation in which a message is archived). The phone should still
2374     * ring/vibrate/etc as normal in this case.
2375     */
2376    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2377    public static final String ACTION_PROVIDER_CHANGED =
2378            "android.intent.action.PROVIDER_CHANGED";
2379
2380    /**
2381     * Broadcast Action: Wired Headset plugged in or unplugged.
2382     *
2383     * Same as {@link android.media.AudioManager#ACTION_HEADSET_PLUG}, to be consulted for value
2384     *   and documentation.
2385     * <p>If the minimum SDK version of your application is
2386     * {@link android.os.Build.VERSION_CODES#LOLLIPOP}, it is recommended to refer
2387     * to the <code>AudioManager</code> constant in your receiver registration code instead.
2388     */
2389    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2390    public static final String ACTION_HEADSET_PLUG = android.media.AudioManager.ACTION_HEADSET_PLUG;
2391
2392    /**
2393     * <p>Broadcast Action: The user has switched on advanced settings in the settings app:</p>
2394     * <ul>
2395     *   <li><em>state</em> - A boolean value indicating whether the settings is on or off.</li>
2396     * </ul>
2397     *
2398     * <p class="note">This is a protected intent that can only be sent
2399     * by the system.
2400     *
2401     * @hide
2402     */
2403    //@SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2404    public static final String ACTION_ADVANCED_SETTINGS_CHANGED
2405            = "android.intent.action.ADVANCED_SETTINGS";
2406
2407    /**
2408     *  Broadcast Action: Sent after application restrictions are changed.
2409     *
2410     * <p class="note">This is a protected intent that can only be sent
2411     * by the system.</p>
2412     */
2413    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2414    public static final String ACTION_APPLICATION_RESTRICTIONS_CHANGED =
2415            "android.intent.action.APPLICATION_RESTRICTIONS_CHANGED";
2416
2417    /**
2418     * Broadcast Action: An outgoing call is about to be placed.
2419     *
2420     * <p>The Intent will have the following extra value:</p>
2421     * <ul>
2422     *   <li><em>{@link android.content.Intent#EXTRA_PHONE_NUMBER}</em> -
2423     *       the phone number originally intended to be dialed.</li>
2424     * </ul>
2425     * <p>Once the broadcast is finished, the resultData is used as the actual
2426     * number to call.  If  <code>null</code>, no call will be placed.</p>
2427     * <p>It is perfectly acceptable for multiple receivers to process the
2428     * outgoing call in turn: for example, a parental control application
2429     * might verify that the user is authorized to place the call at that
2430     * time, then a number-rewriting application might add an area code if
2431     * one was not specified.</p>
2432     * <p>For consistency, any receiver whose purpose is to prohibit phone
2433     * calls should have a priority of 0, to ensure it will see the final
2434     * phone number to be dialed.
2435     * Any receiver whose purpose is to rewrite phone numbers to be called
2436     * should have a positive priority.
2437     * Negative priorities are reserved for the system for this broadcast;
2438     * using them may cause problems.</p>
2439     * <p>Any BroadcastReceiver receiving this Intent <em>must not</em>
2440     * abort the broadcast.</p>
2441     * <p>Emergency calls cannot be intercepted using this mechanism, and
2442     * other calls cannot be modified to call emergency numbers using this
2443     * mechanism.
2444     * <p>Some apps (such as VoIP apps) may want to redirect the outgoing
2445     * call to use their own service instead. Those apps should first prevent
2446     * the call from being placed by setting resultData to <code>null</code>
2447     * and then start their own app to make the call.
2448     * <p>You must hold the
2449     * {@link android.Manifest.permission#PROCESS_OUTGOING_CALLS}
2450     * permission to receive this Intent.</p>
2451     *
2452     * <p class="note">This is a protected intent that can only be sent
2453     * by the system.
2454     */
2455    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2456    public static final String ACTION_NEW_OUTGOING_CALL =
2457            "android.intent.action.NEW_OUTGOING_CALL";
2458
2459    /**
2460     * Broadcast Action: Have the device reboot.  This is only for use by
2461     * system code.
2462     *
2463     * <p class="note">This is a protected intent that can only be sent
2464     * by the system.
2465     */
2466    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2467    public static final String ACTION_REBOOT =
2468            "android.intent.action.REBOOT";
2469
2470    /**
2471     * Broadcast Action:  A sticky broadcast for changes in the physical
2472     * docking state of the device.
2473     *
2474     * <p>The intent will have the following extra values:
2475     * <ul>
2476     *   <li><em>{@link #EXTRA_DOCK_STATE}</em> - the current dock
2477     *       state, indicating which dock the device is physically in.</li>
2478     * </ul>
2479     * <p>This is intended for monitoring the current physical dock state.
2480     * See {@link android.app.UiModeManager} for the normal API dealing with
2481     * dock mode changes.
2482     */
2483    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2484    public static final String ACTION_DOCK_EVENT =
2485            "android.intent.action.DOCK_EVENT";
2486
2487    /**
2488     * Broadcast Action: A broadcast when idle maintenance can be started.
2489     * This means that the user is not interacting with the device and is
2490     * not expected to do so soon. Typical use of the idle maintenance is
2491     * to perform somehow expensive tasks that can be postponed at a moment
2492     * when they will not degrade user experience.
2493     * <p>
2494     * <p class="note">In order to keep the device responsive in case of an
2495     * unexpected user interaction, implementations of a maintenance task
2496     * should be interruptible. In such a scenario a broadcast with action
2497     * {@link #ACTION_IDLE_MAINTENANCE_END} will be sent. In other words, you
2498     * should not do the maintenance work in
2499     * {@link BroadcastReceiver#onReceive(Context, Intent)}, rather start a
2500     * maintenance service by {@link Context#startService(Intent)}. Also
2501     * you should hold a wake lock while your maintenance service is running
2502     * to prevent the device going to sleep.
2503     * </p>
2504     * <p>
2505     * <p class="note">This is a protected intent that can only be sent by
2506     * the system.
2507     * </p>
2508     *
2509     * @see #ACTION_IDLE_MAINTENANCE_END
2510     *
2511     * @hide
2512     */
2513    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2514    public static final String ACTION_IDLE_MAINTENANCE_START =
2515            "android.intent.action.ACTION_IDLE_MAINTENANCE_START";
2516
2517    /**
2518     * Broadcast Action:  A broadcast when idle maintenance should be stopped.
2519     * This means that the user was not interacting with the device as a result
2520     * of which a broadcast with action {@link #ACTION_IDLE_MAINTENANCE_START}
2521     * was sent and now the user started interacting with the device. Typical
2522     * use of the idle maintenance is to perform somehow expensive tasks that
2523     * can be postponed at a moment when they will not degrade user experience.
2524     * <p>
2525     * <p class="note">In order to keep the device responsive in case of an
2526     * unexpected user interaction, implementations of a maintenance task
2527     * should be interruptible. Hence, on receiving a broadcast with this
2528     * action, the maintenance task should be interrupted as soon as possible.
2529     * In other words, you should not do the maintenance work in
2530     * {@link BroadcastReceiver#onReceive(Context, Intent)}, rather stop the
2531     * maintenance service that was started on receiving of
2532     * {@link #ACTION_IDLE_MAINTENANCE_START}.Also you should release the wake
2533     * lock you acquired when your maintenance service started.
2534     * </p>
2535     * <p class="note">This is a protected intent that can only be sent
2536     * by the system.
2537     *
2538     * @see #ACTION_IDLE_MAINTENANCE_START
2539     *
2540     * @hide
2541     */
2542    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
2543    public static final String ACTION_IDLE_MAINTENANCE_END =
2544            "android.intent.action.ACTION_IDLE_MAINTENANCE_END";
2545
2546    /**
2547     * Broadcast Action: a remote intent is to be broadcasted.
2548     *
2549     * A remote intent is used for remote RPC between devices. The remote intent
2550     * is serialized and sent from one device to another device. The receiving
2551     * device parses the remote intent and broadcasts it. Note that anyone can
2552     * broadcast a remote intent. However, if the intent receiver of the remote intent
2553     * does not trust intent broadcasts from arbitrary intent senders, it should require
2554     * the sender to hold certain permissions so only trusted sender's broadcast will be
2555     * let through.
2556     * @hide
2557     */
2558    public static final String ACTION_REMOTE_INTENT =
2559            "com.google.android.c2dm.intent.RECEIVE";
2560
2561    /**
2562     * Broadcast Action: hook for permforming cleanup after a system update.
2563     *
2564     * The broadcast is sent when the system is booting, before the
2565     * BOOT_COMPLETED broadcast.  It is only sent to receivers in the system
2566     * image.  A receiver for this should do its work and then disable itself
2567     * so that it does not get run again at the next boot.
2568     * @hide
2569     */
2570    public static final String ACTION_PRE_BOOT_COMPLETED =
2571            "android.intent.action.PRE_BOOT_COMPLETED";
2572
2573    /**
2574     * Broadcast to a specific application to query any supported restrictions to impose
2575     * on restricted users. The broadcast intent contains an extra
2576     * {@link #EXTRA_RESTRICTIONS_BUNDLE} with the currently persisted
2577     * restrictions as a Bundle of key/value pairs. The value types can be Boolean, String or
2578     * String[] depending on the restriction type.<p/>
2579     * The response should contain an extra {@link #EXTRA_RESTRICTIONS_LIST},
2580     * which is of type <code>ArrayList&lt;RestrictionEntry&gt;</code>. It can also
2581     * contain an extra {@link #EXTRA_RESTRICTIONS_INTENT}, which is of type <code>Intent</code>.
2582     * The activity specified by that intent will be launched for a result which must contain
2583     * one of the extras {@link #EXTRA_RESTRICTIONS_LIST} or {@link #EXTRA_RESTRICTIONS_BUNDLE}.
2584     * The keys and values of the returned restrictions will be persisted.
2585     * @see RestrictionEntry
2586     */
2587    public static final String ACTION_GET_RESTRICTION_ENTRIES =
2588            "android.intent.action.GET_RESTRICTION_ENTRIES";
2589
2590    /**
2591     * Sent the first time a user is starting, to allow system apps to
2592     * perform one time initialization.  (This will not be seen by third
2593     * party applications because a newly initialized user does not have any
2594     * third party applications installed for it.)  This is sent early in
2595     * starting the user, around the time the home app is started, before
2596     * {@link #ACTION_BOOT_COMPLETED} is sent.  This is sent as a foreground
2597     * broadcast, since it is part of a visible user interaction; be as quick
2598     * as possible when handling it.
2599     */
2600    public static final String ACTION_USER_INITIALIZE =
2601            "android.intent.action.USER_INITIALIZE";
2602
2603    /**
2604     * Sent when a user switch is happening, causing the process's user to be
2605     * brought to the foreground.  This is only sent to receivers registered
2606     * through {@link Context#registerReceiver(BroadcastReceiver, IntentFilter)
2607     * Context.registerReceiver}.  It is sent to the user that is going to the
2608     * foreground.  This is sent as a foreground
2609     * broadcast, since it is part of a visible user interaction; be as quick
2610     * as possible when handling it.
2611     */
2612    public static final String ACTION_USER_FOREGROUND =
2613            "android.intent.action.USER_FOREGROUND";
2614
2615    /**
2616     * Sent when a user switch is happening, causing the process's user to be
2617     * sent to the background.  This is only sent to receivers registered
2618     * through {@link Context#registerReceiver(BroadcastReceiver, IntentFilter)
2619     * Context.registerReceiver}.  It is sent to the user that is going to the
2620     * background.  This is sent as a foreground
2621     * broadcast, since it is part of a visible user interaction; be as quick
2622     * as possible when handling it.
2623     */
2624    public static final String ACTION_USER_BACKGROUND =
2625            "android.intent.action.USER_BACKGROUND";
2626
2627    /**
2628     * Broadcast sent to the system when a user is added. Carries an extra
2629     * EXTRA_USER_HANDLE that has the userHandle of the new user.  It is sent to
2630     * all running users.  You must hold
2631     * {@link android.Manifest.permission#MANAGE_USERS} to receive this broadcast.
2632     * @hide
2633     */
2634    public static final String ACTION_USER_ADDED =
2635            "android.intent.action.USER_ADDED";
2636
2637    /**
2638     * Broadcast sent by the system when a user is started. Carries an extra
2639     * EXTRA_USER_HANDLE that has the userHandle of the user.  This is only sent to
2640     * registered receivers, not manifest receivers.  It is sent to the user
2641     * that has been started.  This is sent as a foreground
2642     * broadcast, since it is part of a visible user interaction; be as quick
2643     * as possible when handling it.
2644     * @hide
2645     */
2646    public static final String ACTION_USER_STARTED =
2647            "android.intent.action.USER_STARTED";
2648
2649    /**
2650     * Broadcast sent when a user is in the process of starting.  Carries an extra
2651     * EXTRA_USER_HANDLE that has the userHandle of the user.  This is only
2652     * sent to registered receivers, not manifest receivers.  It is sent to all
2653     * users (including the one that is being started).  You must hold
2654     * {@link android.Manifest.permission#INTERACT_ACROSS_USERS} to receive
2655     * this broadcast.  This is sent as a background broadcast, since
2656     * its result is not part of the primary UX flow; to safely keep track of
2657     * started/stopped state of a user you can use this in conjunction with
2658     * {@link #ACTION_USER_STOPPING}.  It is <b>not</b> generally safe to use with
2659     * other user state broadcasts since those are foreground broadcasts so can
2660     * execute in a different order.
2661     * @hide
2662     */
2663    public static final String ACTION_USER_STARTING =
2664            "android.intent.action.USER_STARTING";
2665
2666    /**
2667     * Broadcast sent when a user is going to be stopped.  Carries an extra
2668     * EXTRA_USER_HANDLE that has the userHandle of the user.  This is only
2669     * sent to registered receivers, not manifest receivers.  It is sent to all
2670     * users (including the one that is being stopped).  You must hold
2671     * {@link android.Manifest.permission#INTERACT_ACROSS_USERS} to receive
2672     * this broadcast.  The user will not stop until all receivers have
2673     * handled the broadcast.  This is sent as a background broadcast, since
2674     * its result is not part of the primary UX flow; to safely keep track of
2675     * started/stopped state of a user you can use this in conjunction with
2676     * {@link #ACTION_USER_STARTING}.  It is <b>not</b> generally safe to use with
2677     * other user state broadcasts since those are foreground broadcasts so can
2678     * execute in a different order.
2679     * @hide
2680     */
2681    public static final String ACTION_USER_STOPPING =
2682            "android.intent.action.USER_STOPPING";
2683
2684    /**
2685     * Broadcast sent to the system when a user is stopped. Carries an extra
2686     * EXTRA_USER_HANDLE that has the userHandle of the user.  This is similar to
2687     * {@link #ACTION_PACKAGE_RESTARTED}, but for an entire user instead of a
2688     * specific package.  This is only sent to registered receivers, not manifest
2689     * receivers.  It is sent to all running users <em>except</em> the one that
2690     * has just been stopped (which is no longer running).
2691     * @hide
2692     */
2693    public static final String ACTION_USER_STOPPED =
2694            "android.intent.action.USER_STOPPED";
2695
2696    /**
2697     * Broadcast sent to the system when a user is removed. Carries an extra EXTRA_USER_HANDLE that has
2698     * the userHandle of the user.  It is sent to all running users except the
2699     * one that has been removed. The user will not be completely removed until all receivers have
2700     * handled the broadcast. You must hold
2701     * {@link android.Manifest.permission#MANAGE_USERS} to receive this broadcast.
2702     * @hide
2703     */
2704    public static final String ACTION_USER_REMOVED =
2705            "android.intent.action.USER_REMOVED";
2706
2707    /**
2708     * Broadcast sent to the system when the user switches. Carries an extra EXTRA_USER_HANDLE that has
2709     * the userHandle of the user to become the current one. This is only sent to
2710     * registered receivers, not manifest receivers.  It is sent to all running users.
2711     * You must hold
2712     * {@link android.Manifest.permission#MANAGE_USERS} to receive this broadcast.
2713     * @hide
2714     */
2715    public static final String ACTION_USER_SWITCHED =
2716            "android.intent.action.USER_SWITCHED";
2717
2718    /**
2719     * Broadcast sent to the system when a user's information changes. Carries an extra
2720     * {@link #EXTRA_USER_HANDLE} to indicate which user's information changed.
2721     * This is only sent to registered receivers, not manifest receivers. It is sent to all users.
2722     * @hide
2723     */
2724    public static final String ACTION_USER_INFO_CHANGED =
2725            "android.intent.action.USER_INFO_CHANGED";
2726
2727    /**
2728     * Broadcast sent to the primary user when an associated managed profile is added (the profile
2729     * was created and is ready to be used). Carries an extra {@link #EXTRA_USER} that specifies
2730     * the UserHandle of the profile that was added. Only applications (for example Launchers)
2731     * that need to display merged content across both primary and managed profiles need to
2732     * worry about this broadcast. This is only sent to registered receivers,
2733     * not manifest receivers.
2734     */
2735    public static final String ACTION_MANAGED_PROFILE_ADDED =
2736            "android.intent.action.MANAGED_PROFILE_ADDED";
2737
2738    /**
2739     * Broadcast sent to the primary user when an associated managed profile is removed. Carries an
2740     * extra {@link #EXTRA_USER} that specifies the UserHandle of the profile that was removed.
2741     * Only applications (for example Launchers) that need to display merged content across both
2742     * primary and managed profiles need to worry about this broadcast. This is only sent to
2743     * registered receivers, not manifest receivers.
2744     */
2745    public static final String ACTION_MANAGED_PROFILE_REMOVED =
2746            "android.intent.action.MANAGED_PROFILE_REMOVED";
2747
2748    /**
2749     * Sent when the user taps on the clock widget in the system's "quick settings" area.
2750     */
2751    public static final String ACTION_QUICK_CLOCK =
2752            "android.intent.action.QUICK_CLOCK";
2753
2754    /**
2755     * Activity Action: Shows the brightness setting dialog.
2756     * @hide
2757     */
2758    public static final String ACTION_SHOW_BRIGHTNESS_DIALOG =
2759            "android.intent.action.SHOW_BRIGHTNESS_DIALOG";
2760
2761    /**
2762     * Broadcast Action:  A global button was pressed.  Includes a single
2763     * extra field, {@link #EXTRA_KEY_EVENT}, containing the key event that
2764     * caused the broadcast.
2765     * @hide
2766     */
2767    public static final String ACTION_GLOBAL_BUTTON = "android.intent.action.GLOBAL_BUTTON";
2768
2769    /**
2770     * Activity Action: Allow the user to select and return one or more existing
2771     * documents. When invoked, the system will display the various
2772     * {@link DocumentsProvider} instances installed on the device, letting the
2773     * user interactively navigate through them. These documents include local
2774     * media, such as photos and video, and documents provided by installed
2775     * cloud storage providers.
2776     * <p>
2777     * Each document is represented as a {@code content://} URI backed by a
2778     * {@link DocumentsProvider}, which can be opened as a stream with
2779     * {@link ContentResolver#openFileDescriptor(Uri, String)}, or queried for
2780     * {@link android.provider.DocumentsContract.Document} metadata.
2781     * <p>
2782     * All selected documents are returned to the calling application with
2783     * persistable read and write permission grants. If you want to maintain
2784     * access to the documents across device reboots, you need to explicitly
2785     * take the persistable permissions using
2786     * {@link ContentResolver#takePersistableUriPermission(Uri, int)}.
2787     * <p>
2788     * Callers must indicate the acceptable document MIME types through
2789     * {@link #setType(String)}. For example, to select photos, use
2790     * {@code image/*}. If multiple disjoint MIME types are acceptable, define
2791     * them in {@link #EXTRA_MIME_TYPES} and {@link #setType(String)} to
2792     * {@literal *}/*.
2793     * <p>
2794     * If the caller can handle multiple returned items (the user performing
2795     * multiple selection), then you can specify {@link #EXTRA_ALLOW_MULTIPLE}
2796     * to indicate this.
2797     * <p>
2798     * Callers must include {@link #CATEGORY_OPENABLE} in the Intent so that
2799     * returned URIs can be opened with
2800     * {@link ContentResolver#openFileDescriptor(Uri, String)}.
2801     * <p>
2802     * Output: The URI of the item that was picked, returned in
2803     * {@link #getData()}. This must be a {@code content://} URI so that any
2804     * receiver can access it. If multiple documents were selected, they are
2805     * returned in {@link #getClipData()}.
2806     *
2807     * @see DocumentsContract
2808     * @see #ACTION_OPEN_DOCUMENT_TREE
2809     * @see #ACTION_CREATE_DOCUMENT
2810     * @see #FLAG_GRANT_PERSISTABLE_URI_PERMISSION
2811     */
2812    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
2813    public static final String ACTION_OPEN_DOCUMENT = "android.intent.action.OPEN_DOCUMENT";
2814
2815    /**
2816     * Activity Action: Allow the user to create a new document. When invoked,
2817     * the system will display the various {@link DocumentsProvider} instances
2818     * installed on the device, letting the user navigate through them. The
2819     * returned document may be a newly created document with no content, or it
2820     * may be an existing document with the requested MIME type.
2821     * <p>
2822     * Each document is represented as a {@code content://} URI backed by a
2823     * {@link DocumentsProvider}, which can be opened as a stream with
2824     * {@link ContentResolver#openFileDescriptor(Uri, String)}, or queried for
2825     * {@link android.provider.DocumentsContract.Document} metadata.
2826     * <p>
2827     * Callers must indicate the concrete MIME type of the document being
2828     * created by setting {@link #setType(String)}. This MIME type cannot be
2829     * changed after the document is created.
2830     * <p>
2831     * Callers can provide an initial display name through {@link #EXTRA_TITLE},
2832     * but the user may change this value before creating the file.
2833     * <p>
2834     * Callers must include {@link #CATEGORY_OPENABLE} in the Intent so that
2835     * returned URIs can be opened with
2836     * {@link ContentResolver#openFileDescriptor(Uri, String)}.
2837     * <p>
2838     * Output: The URI of the item that was created. This must be a
2839     * {@code content://} URI so that any receiver can access it.
2840     *
2841     * @see DocumentsContract
2842     * @see #ACTION_OPEN_DOCUMENT
2843     * @see #ACTION_OPEN_DOCUMENT_TREE
2844     * @see #FLAG_GRANT_PERSISTABLE_URI_PERMISSION
2845     */
2846    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
2847    public static final String ACTION_CREATE_DOCUMENT = "android.intent.action.CREATE_DOCUMENT";
2848
2849    /**
2850     * Activity Action: Allow the user to pick a directory subtree. When
2851     * invoked, the system will display the various {@link DocumentsProvider}
2852     * instances installed on the device, letting the user navigate through
2853     * them. Apps can fully manage documents within the returned directory.
2854     * <p>
2855     * To gain access to descendant (child, grandchild, etc) documents, use
2856     * {@link DocumentsContract#buildDocumentUriUsingTree(Uri, String)} and
2857     * {@link DocumentsContract#buildChildDocumentsUriUsingTree(Uri, String)}
2858     * with the returned URI.
2859     * <p>
2860     * Output: The URI representing the selected directory tree.
2861     *
2862     * @see DocumentsContract
2863     */
2864    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
2865    public static final String
2866            ACTION_OPEN_DOCUMENT_TREE = "android.intent.action.OPEN_DOCUMENT_TREE";
2867
2868    /** {@hide} */
2869    public static final String ACTION_MASTER_CLEAR = "android.intent.action.MASTER_CLEAR";
2870
2871    /**
2872     * Broadcast action: report that a settings element is being restored from backup.  The intent
2873     * contains three extras: EXTRA_SETTING_NAME is a string naming the restored setting,
2874     * EXTRA_SETTING_NEW_VALUE is the value being restored, and EXTRA_SETTING_PREVIOUS_VALUE
2875     * is the value of that settings entry prior to the restore operation.  All of these values are
2876     * represented as strings.
2877     *
2878     * <p>This broadcast is sent only for settings provider entries known to require special handling
2879     * around restore time.  These entries are found in the BROADCAST_ON_RESTORE table within
2880     * the provider's backup agent implementation.
2881     *
2882     * @see #EXTRA_SETTING_NAME
2883     * @see #EXTRA_SETTING_PREVIOUS_VALUE
2884     * @see #EXTRA_SETTING_NEW_VALUE
2885     * {@hide}
2886     */
2887    public static final String ACTION_SETTING_RESTORED = "android.os.action.SETTING_RESTORED";
2888
2889    /** {@hide} */
2890    public static final String EXTRA_SETTING_NAME = "setting_name";
2891    /** {@hide} */
2892    public static final String EXTRA_SETTING_PREVIOUS_VALUE = "previous_value";
2893    /** {@hide} */
2894    public static final String EXTRA_SETTING_NEW_VALUE = "new_value";
2895
2896    /**
2897     * Activity Action: Process a piece of text.
2898     * <p>Input: {@link #EXTRA_PROCESS_TEXT} contains the text to be processed.
2899     * {@link #EXTRA_PROCESS_TEXT_READONLY} states if the resulting text will be read-only.</p>
2900     * <p>Output: {@link #EXTRA_PROCESS_TEXT} contains the processed text.</p>
2901     */
2902    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
2903    public static final String ACTION_PROCESS_TEXT = "android.intent.action.PROCESS_TEXT";
2904    /**
2905     * The name of the extra used to define the text to be processed.
2906     */
2907    public static final String EXTRA_PROCESS_TEXT = "android.intent.extra.PROCESS_TEXT";
2908    /**
2909     * The name of the extra used to define if the processed text will be used as read-only.
2910     */
2911    public static final String EXTRA_PROCESS_TEXT_READONLY =
2912            "android.intent.extra.PROCESS_TEXT_READONLY";
2913
2914    // ---------------------------------------------------------------------
2915    // ---------------------------------------------------------------------
2916    // Standard intent categories (see addCategory()).
2917
2918    /**
2919     * Set if the activity should be an option for the default action
2920     * (center press) to perform on a piece of data.  Setting this will
2921     * hide from the user any activities without it set when performing an
2922     * action on some data.  Note that this is normally -not- set in the
2923     * Intent when initiating an action -- it is for use in intent filters
2924     * specified in packages.
2925     */
2926    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
2927    public static final String CATEGORY_DEFAULT = "android.intent.category.DEFAULT";
2928    /**
2929     * Activities that can be safely invoked from a browser must support this
2930     * category.  For example, if the user is viewing a web page or an e-mail
2931     * and clicks on a link in the text, the Intent generated execute that
2932     * link will require the BROWSABLE category, so that only activities
2933     * supporting this category will be considered as possible actions.  By
2934     * supporting this category, you are promising that there is nothing
2935     * damaging (without user intervention) that can happen by invoking any
2936     * matching Intent.
2937     */
2938    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
2939    public static final String CATEGORY_BROWSABLE = "android.intent.category.BROWSABLE";
2940    /**
2941     * Categories for activities that can participate in voice interaction.
2942     * An activity that supports this category must be prepared to run with
2943     * no UI shown at all (though in some case it may have a UI shown), and
2944     * rely on {@link android.app.VoiceInteractor} to interact with the user.
2945     */
2946    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
2947    public static final String CATEGORY_VOICE = "android.intent.category.VOICE";
2948    /**
2949     * Set if the activity should be considered as an alternative action to
2950     * the data the user is currently viewing.  See also
2951     * {@link #CATEGORY_SELECTED_ALTERNATIVE} for an alternative action that
2952     * applies to the selection in a list of items.
2953     *
2954     * <p>Supporting this category means that you would like your activity to be
2955     * displayed in the set of alternative things the user can do, usually as
2956     * part of the current activity's options menu.  You will usually want to
2957     * include a specific label in the &lt;intent-filter&gt; of this action
2958     * describing to the user what it does.
2959     *
2960     * <p>The action of IntentFilter with this category is important in that it
2961     * describes the specific action the target will perform.  This generally
2962     * should not be a generic action (such as {@link #ACTION_VIEW}, but rather
2963     * a specific name such as "com.android.camera.action.CROP.  Only one
2964     * alternative of any particular action will be shown to the user, so using
2965     * a specific action like this makes sure that your alternative will be
2966     * displayed while also allowing other applications to provide their own
2967     * overrides of that particular action.
2968     */
2969    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
2970    public static final String CATEGORY_ALTERNATIVE = "android.intent.category.ALTERNATIVE";
2971    /**
2972     * Set if the activity should be considered as an alternative selection
2973     * action to the data the user has currently selected.  This is like
2974     * {@link #CATEGORY_ALTERNATIVE}, but is used in activities showing a list
2975     * of items from which the user can select, giving them alternatives to the
2976     * default action that will be performed on it.
2977     */
2978    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
2979    public static final String CATEGORY_SELECTED_ALTERNATIVE = "android.intent.category.SELECTED_ALTERNATIVE";
2980    /**
2981     * Intended to be used as a tab inside of a containing TabActivity.
2982     */
2983    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
2984    public static final String CATEGORY_TAB = "android.intent.category.TAB";
2985    /**
2986     * Should be displayed in the top-level launcher.
2987     */
2988    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
2989    public static final String CATEGORY_LAUNCHER = "android.intent.category.LAUNCHER";
2990    /**
2991     * Indicates an activity optimized for Leanback mode, and that should
2992     * be displayed in the Leanback launcher.
2993     */
2994    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
2995    public static final String CATEGORY_LEANBACK_LAUNCHER = "android.intent.category.LEANBACK_LAUNCHER";
2996    /**
2997     * Indicates a Leanback settings activity to be displayed in the Leanback launcher.
2998     * @hide
2999     */
3000    @SystemApi
3001    public static final String CATEGORY_LEANBACK_SETTINGS = "android.intent.category.LEANBACK_SETTINGS";
3002    /**
3003     * Provides information about the package it is in; typically used if
3004     * a package does not contain a {@link #CATEGORY_LAUNCHER} to provide
3005     * a front-door to the user without having to be shown in the all apps list.
3006     */
3007    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3008    public static final String CATEGORY_INFO = "android.intent.category.INFO";
3009    /**
3010     * This is the home activity, that is the first activity that is displayed
3011     * when the device boots.
3012     */
3013    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3014    public static final String CATEGORY_HOME = "android.intent.category.HOME";
3015    /**
3016     * This activity is a preference panel.
3017     */
3018    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3019    public static final String CATEGORY_PREFERENCE = "android.intent.category.PREFERENCE";
3020    /**
3021     * This activity is a development preference panel.
3022     */
3023    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3024    public static final String CATEGORY_DEVELOPMENT_PREFERENCE = "android.intent.category.DEVELOPMENT_PREFERENCE";
3025    /**
3026     * Capable of running inside a parent activity container.
3027     */
3028    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3029    public static final String CATEGORY_EMBED = "android.intent.category.EMBED";
3030    /**
3031     * This activity allows the user to browse and download new applications.
3032     */
3033    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3034    public static final String CATEGORY_APP_MARKET = "android.intent.category.APP_MARKET";
3035    /**
3036     * This activity may be exercised by the monkey or other automated test tools.
3037     */
3038    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3039    public static final String CATEGORY_MONKEY = "android.intent.category.MONKEY";
3040    /**
3041     * To be used as a test (not part of the normal user experience).
3042     */
3043    public static final String CATEGORY_TEST = "android.intent.category.TEST";
3044    /**
3045     * To be used as a unit test (run through the Test Harness).
3046     */
3047    public static final String CATEGORY_UNIT_TEST = "android.intent.category.UNIT_TEST";
3048    /**
3049     * To be used as a sample code example (not part of the normal user
3050     * experience).
3051     */
3052    public static final String CATEGORY_SAMPLE_CODE = "android.intent.category.SAMPLE_CODE";
3053
3054    /**
3055     * Used to indicate that an intent only wants URIs that can be opened with
3056     * {@link ContentResolver#openFileDescriptor(Uri, String)}. Openable URIs
3057     * must support at least the columns defined in {@link OpenableColumns} when
3058     * queried.
3059     *
3060     * @see #ACTION_GET_CONTENT
3061     * @see #ACTION_OPEN_DOCUMENT
3062     * @see #ACTION_CREATE_DOCUMENT
3063     */
3064    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3065    public static final String CATEGORY_OPENABLE = "android.intent.category.OPENABLE";
3066
3067    /**
3068     * To be used as code under test for framework instrumentation tests.
3069     */
3070    public static final String CATEGORY_FRAMEWORK_INSTRUMENTATION_TEST =
3071            "android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST";
3072    /**
3073     * An activity to run when device is inserted into a car dock.
3074     * Used with {@link #ACTION_MAIN} to launch an activity.  For more
3075     * information, see {@link android.app.UiModeManager}.
3076     */
3077    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3078    public static final String CATEGORY_CAR_DOCK = "android.intent.category.CAR_DOCK";
3079    /**
3080     * An activity to run when device is inserted into a car dock.
3081     * Used with {@link #ACTION_MAIN} to launch an activity.  For more
3082     * information, see {@link android.app.UiModeManager}.
3083     */
3084    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3085    public static final String CATEGORY_DESK_DOCK = "android.intent.category.DESK_DOCK";
3086    /**
3087     * An activity to run when device is inserted into a analog (low end) dock.
3088     * Used with {@link #ACTION_MAIN} to launch an activity.  For more
3089     * information, see {@link android.app.UiModeManager}.
3090     */
3091    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3092    public static final String CATEGORY_LE_DESK_DOCK = "android.intent.category.LE_DESK_DOCK";
3093
3094    /**
3095     * An activity to run when device is inserted into a digital (high end) dock.
3096     * Used with {@link #ACTION_MAIN} to launch an activity.  For more
3097     * information, see {@link android.app.UiModeManager}.
3098     */
3099    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3100    public static final String CATEGORY_HE_DESK_DOCK = "android.intent.category.HE_DESK_DOCK";
3101
3102    /**
3103     * Used to indicate that the activity can be used in a car environment.
3104     */
3105    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3106    public static final String CATEGORY_CAR_MODE = "android.intent.category.CAR_MODE";
3107
3108    // ---------------------------------------------------------------------
3109    // ---------------------------------------------------------------------
3110    // Application launch intent categories (see addCategory()).
3111
3112    /**
3113     * Used with {@link #ACTION_MAIN} to launch the browser application.
3114     * The activity should be able to browse the Internet.
3115     * <p>NOTE: This should not be used as the primary key of an Intent,
3116     * since it will not result in the app launching with the correct
3117     * action and category.  Instead, use this with
3118     * {@link #makeMainSelectorActivity(String, String)} to generate a main
3119     * Intent with this category in the selector.</p>
3120     */
3121    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3122    public static final String CATEGORY_APP_BROWSER = "android.intent.category.APP_BROWSER";
3123
3124    /**
3125     * Used with {@link #ACTION_MAIN} to launch the calculator application.
3126     * The activity should be able to perform standard arithmetic operations.
3127     * <p>NOTE: This should not be used as the primary key of an Intent,
3128     * since it will not result in the app launching with the correct
3129     * action and category.  Instead, use this with
3130     * {@link #makeMainSelectorActivity(String, String)} to generate a main
3131     * Intent with this category in the selector.</p>
3132     */
3133    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3134    public static final String CATEGORY_APP_CALCULATOR = "android.intent.category.APP_CALCULATOR";
3135
3136    /**
3137     * Used with {@link #ACTION_MAIN} to launch the calendar application.
3138     * The activity should be able to view and manipulate calendar entries.
3139     * <p>NOTE: This should not be used as the primary key of an Intent,
3140     * since it will not result in the app launching with the correct
3141     * action and category.  Instead, use this with
3142     * {@link #makeMainSelectorActivity(String, String)} to generate a main
3143     * Intent with this category in the selector.</p>
3144     */
3145    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3146    public static final String CATEGORY_APP_CALENDAR = "android.intent.category.APP_CALENDAR";
3147
3148    /**
3149     * Used with {@link #ACTION_MAIN} to launch the contacts application.
3150     * The activity should be able to view and manipulate address book entries.
3151     * <p>NOTE: This should not be used as the primary key of an Intent,
3152     * since it will not result in the app launching with the correct
3153     * action and category.  Instead, use this with
3154     * {@link #makeMainSelectorActivity(String, String)} to generate a main
3155     * Intent with this category in the selector.</p>
3156     */
3157    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3158    public static final String CATEGORY_APP_CONTACTS = "android.intent.category.APP_CONTACTS";
3159
3160    /**
3161     * Used with {@link #ACTION_MAIN} to launch the email application.
3162     * The activity should be able to send and receive email.
3163     * <p>NOTE: This should not be used as the primary key of an Intent,
3164     * since it will not result in the app launching with the correct
3165     * action and category.  Instead, use this with
3166     * {@link #makeMainSelectorActivity(String, String)} to generate a main
3167     * Intent with this category in the selector.</p>
3168     */
3169    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3170    public static final String CATEGORY_APP_EMAIL = "android.intent.category.APP_EMAIL";
3171
3172    /**
3173     * Used with {@link #ACTION_MAIN} to launch the gallery application.
3174     * The activity should be able to view and manipulate image and video files
3175     * stored on the device.
3176     * <p>NOTE: This should not be used as the primary key of an Intent,
3177     * since it will not result in the app launching with the correct
3178     * action and category.  Instead, use this with
3179     * {@link #makeMainSelectorActivity(String, String)} to generate a main
3180     * Intent with this category in the selector.</p>
3181     */
3182    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3183    public static final String CATEGORY_APP_GALLERY = "android.intent.category.APP_GALLERY";
3184
3185    /**
3186     * Used with {@link #ACTION_MAIN} to launch the maps application.
3187     * The activity should be able to show the user's current location and surroundings.
3188     * <p>NOTE: This should not be used as the primary key of an Intent,
3189     * since it will not result in the app launching with the correct
3190     * action and category.  Instead, use this with
3191     * {@link #makeMainSelectorActivity(String, String)} to generate a main
3192     * Intent with this category in the selector.</p>
3193     */
3194    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3195    public static final String CATEGORY_APP_MAPS = "android.intent.category.APP_MAPS";
3196
3197    /**
3198     * Used with {@link #ACTION_MAIN} to launch the messaging application.
3199     * The activity should be able to send and receive text messages.
3200     * <p>NOTE: This should not be used as the primary key of an Intent,
3201     * since it will not result in the app launching with the correct
3202     * action and category.  Instead, use this with
3203     * {@link #makeMainSelectorActivity(String, String)} to generate a main
3204     * Intent with this category in the selector.</p>
3205     */
3206    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3207    public static final String CATEGORY_APP_MESSAGING = "android.intent.category.APP_MESSAGING";
3208
3209    /**
3210     * Used with {@link #ACTION_MAIN} to launch the music application.
3211     * The activity should be able to play, browse, or manipulate music files
3212     * stored on the device.
3213     * <p>NOTE: This should not be used as the primary key of an Intent,
3214     * since it will not result in the app launching with the correct
3215     * action and category.  Instead, use this with
3216     * {@link #makeMainSelectorActivity(String, String)} to generate a main
3217     * Intent with this category in the selector.</p>
3218     */
3219    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
3220    public static final String CATEGORY_APP_MUSIC = "android.intent.category.APP_MUSIC";
3221
3222    // ---------------------------------------------------------------------
3223    // ---------------------------------------------------------------------
3224    // Standard extra data keys.
3225
3226    /**
3227     * The initial data to place in a newly created record.  Use with
3228     * {@link #ACTION_INSERT}.  The data here is a Map containing the same
3229     * fields as would be given to the underlying ContentProvider.insert()
3230     * call.
3231     */
3232    public static final String EXTRA_TEMPLATE = "android.intent.extra.TEMPLATE";
3233
3234    /**
3235     * A constant CharSequence that is associated with the Intent, used with
3236     * {@link #ACTION_SEND} to supply the literal data to be sent.  Note that
3237     * this may be a styled CharSequence, so you must use
3238     * {@link Bundle#getCharSequence(String) Bundle.getCharSequence()} to
3239     * retrieve it.
3240     */
3241    public static final String EXTRA_TEXT = "android.intent.extra.TEXT";
3242
3243    /**
3244     * A constant String that is associated with the Intent, used with
3245     * {@link #ACTION_SEND} to supply an alternative to {@link #EXTRA_TEXT}
3246     * as HTML formatted text.  Note that you <em>must</em> also supply
3247     * {@link #EXTRA_TEXT}.
3248     */
3249    public static final String EXTRA_HTML_TEXT = "android.intent.extra.HTML_TEXT";
3250
3251    /**
3252     * A content: URI holding a stream of data associated with the Intent,
3253     * used with {@link #ACTION_SEND} to supply the data being sent.
3254     */
3255    public static final String EXTRA_STREAM = "android.intent.extra.STREAM";
3256
3257    /**
3258     * A String[] holding e-mail addresses that should be delivered to.
3259     */
3260    public static final String EXTRA_EMAIL       = "android.intent.extra.EMAIL";
3261
3262    /**
3263     * A String[] holding e-mail addresses that should be carbon copied.
3264     */
3265    public static final String EXTRA_CC       = "android.intent.extra.CC";
3266
3267    /**
3268     * A String[] holding e-mail addresses that should be blind carbon copied.
3269     */
3270    public static final String EXTRA_BCC      = "android.intent.extra.BCC";
3271
3272    /**
3273     * A constant string holding the desired subject line of a message.
3274     */
3275    public static final String EXTRA_SUBJECT  = "android.intent.extra.SUBJECT";
3276
3277    /**
3278     * An Intent describing the choices you would like shown with
3279     * {@link #ACTION_PICK_ACTIVITY}.
3280     */
3281    public static final String EXTRA_INTENT = "android.intent.extra.INTENT";
3282
3283    /**
3284     * A CharSequence dialog title to provide to the user when used with a
3285     * {@link #ACTION_CHOOSER}.
3286     */
3287    public static final String EXTRA_TITLE = "android.intent.extra.TITLE";
3288
3289    /**
3290     * A Parcelable[] of {@link Intent} or
3291     * {@link android.content.pm.LabeledIntent} objects as set with
3292     * {@link #putExtra(String, Parcelable[])} of additional activities to place
3293     * a the front of the list of choices, when shown to the user with a
3294     * {@link #ACTION_CHOOSER}.
3295     */
3296    public static final String EXTRA_INITIAL_INTENTS = "android.intent.extra.INITIAL_INTENTS";
3297
3298    /**
3299     * A Parcelable[] of {@link android.service.chooser.ChooserTarget ChooserTarget} objects
3300     * as set with {@link #putExtra(String, Parcelable[])} representing additional app-specific
3301     * targets to place at the front of the list of choices. Shown to the user with
3302     * {@link #ACTION_CHOOSER}.
3303     */
3304    public static final String EXTRA_CHOOSER_TARGETS = "android.intent.extra.CHOOSER_TARGETS";
3305
3306    /**
3307     * A Bundle forming a mapping of potential target package names to different extras Bundles
3308     * to add to the default intent extras in {@link #EXTRA_INTENT} when used with
3309     * {@link #ACTION_CHOOSER}. Each key should be a package name. The package need not
3310     * be currently installed on the device.
3311     *
3312     * <p>An application may choose to provide alternate extras for the case where a user
3313     * selects an activity from a predetermined set of target packages. If the activity
3314     * the user selects from the chooser belongs to a package with its package name as
3315     * a key in this bundle, the corresponding extras for that package will be merged with
3316     * the extras already present in the intent at {@link #EXTRA_INTENT}. If a replacement
3317     * extra has the same key as an extra already present in the intent it will overwrite
3318     * the extra from the intent.</p>
3319     *
3320     * <p><em>Examples:</em>
3321     * <ul>
3322     *     <li>An application may offer different {@link #EXTRA_TEXT} to an application
3323     *     when sharing with it via {@link #ACTION_SEND}, augmenting a link with additional query
3324     *     parameters for that target.</li>
3325     *     <li>An application may offer additional metadata for known targets of a given intent
3326     *     to pass along information only relevant to that target such as account or content
3327     *     identifiers already known to that application.</li>
3328     * </ul></p>
3329     */
3330    public static final String EXTRA_REPLACEMENT_EXTRAS =
3331            "android.intent.extra.REPLACEMENT_EXTRAS";
3332
3333    /**
3334     * An {@link IntentSender} that will be notified if a user successfully chooses a target
3335     * component to handle an action in an {@link #ACTION_CHOOSER} activity. The IntentSender
3336     * will have the extra {@link #EXTRA_CHOSEN_COMPONENT} appended to it containing the
3337     * {@link ComponentName} of the chosen component.
3338     *
3339     * <p>In some situations this callback may never come, for example if the user abandons
3340     * the chooser, switches to another task or any number of other reasons. Apps should not
3341     * be written assuming that this callback will always occur.</p>
3342     */
3343    public static final String EXTRA_CHOSEN_COMPONENT_INTENT_SENDER =
3344            "android.intent.extra.CHOSEN_COMPONENT_INTENT_SENDER";
3345
3346    /**
3347     * The {@link ComponentName} chosen by the user to complete an action.
3348     *
3349     * @see #EXTRA_CHOSEN_COMPONENT_INTENT_SENDER
3350     */
3351    public static final String EXTRA_CHOSEN_COMPONENT = "android.intent.extra.CHOSEN_COMPONENT";
3352
3353    /**
3354     * A {@link android.view.KeyEvent} object containing the event that
3355     * triggered the creation of the Intent it is in.
3356     */
3357    public static final String EXTRA_KEY_EVENT = "android.intent.extra.KEY_EVENT";
3358
3359    /**
3360     * Set to true in {@link #ACTION_REQUEST_SHUTDOWN} to request confirmation from the user
3361     * before shutting down.
3362     *
3363     * {@hide}
3364     */
3365    public static final String EXTRA_KEY_CONFIRM = "android.intent.extra.KEY_CONFIRM";
3366
3367    /**
3368     * Used as a boolean extra field in {@link android.content.Intent#ACTION_PACKAGE_REMOVED} or
3369     * {@link android.content.Intent#ACTION_PACKAGE_CHANGED} intents to override the default action
3370     * of restarting the application.
3371     */
3372    public static final String EXTRA_DONT_KILL_APP = "android.intent.extra.DONT_KILL_APP";
3373
3374    /**
3375     * A String holding the phone number originally entered in
3376     * {@link android.content.Intent#ACTION_NEW_OUTGOING_CALL}, or the actual
3377     * number to call in a {@link android.content.Intent#ACTION_CALL}.
3378     */
3379    public static final String EXTRA_PHONE_NUMBER = "android.intent.extra.PHONE_NUMBER";
3380
3381    /**
3382     * Used as an int extra field in {@link android.content.Intent#ACTION_UID_REMOVED}
3383     * intents to supply the uid the package had been assigned.  Also an optional
3384     * extra in {@link android.content.Intent#ACTION_PACKAGE_REMOVED} or
3385     * {@link android.content.Intent#ACTION_PACKAGE_CHANGED} for the same
3386     * purpose.
3387     */
3388    public static final String EXTRA_UID = "android.intent.extra.UID";
3389
3390    /**
3391     * @hide String array of package names.
3392     */
3393    @SystemApi
3394    public static final String EXTRA_PACKAGES = "android.intent.extra.PACKAGES";
3395
3396    /**
3397     * Used as a boolean extra field in {@link android.content.Intent#ACTION_PACKAGE_REMOVED}
3398     * intents to indicate whether this represents a full uninstall (removing
3399     * both the code and its data) or a partial uninstall (leaving its data,
3400     * implying that this is an update).
3401     */
3402    public static final String EXTRA_DATA_REMOVED = "android.intent.extra.DATA_REMOVED";
3403
3404    /**
3405     * @hide
3406     * Used as a boolean extra field in {@link android.content.Intent#ACTION_PACKAGE_REMOVED}
3407     * intents to indicate that at this point the package has been removed for
3408     * all users on the device.
3409     */
3410    public static final String EXTRA_REMOVED_FOR_ALL_USERS
3411            = "android.intent.extra.REMOVED_FOR_ALL_USERS";
3412
3413    /**
3414     * Used as a boolean extra field in {@link android.content.Intent#ACTION_PACKAGE_REMOVED}
3415     * intents to indicate that this is a replacement of the package, so this
3416     * broadcast will immediately be followed by an add broadcast for a
3417     * different version of the same package.
3418     */
3419    public static final String EXTRA_REPLACING = "android.intent.extra.REPLACING";
3420
3421    /**
3422     * Used as an int extra field in {@link android.app.AlarmManager} intents
3423     * to tell the application being invoked how many pending alarms are being
3424     * delievered with the intent.  For one-shot alarms this will always be 1.
3425     * For recurring alarms, this might be greater than 1 if the device was
3426     * asleep or powered off at the time an earlier alarm would have been
3427     * delivered.
3428     */
3429    public static final String EXTRA_ALARM_COUNT = "android.intent.extra.ALARM_COUNT";
3430
3431    /**
3432     * Used as an int extra field in {@link android.content.Intent#ACTION_DOCK_EVENT}
3433     * intents to request the dock state.  Possible values are
3434     * {@link android.content.Intent#EXTRA_DOCK_STATE_UNDOCKED},
3435     * {@link android.content.Intent#EXTRA_DOCK_STATE_DESK}, or
3436     * {@link android.content.Intent#EXTRA_DOCK_STATE_CAR}, or
3437     * {@link android.content.Intent#EXTRA_DOCK_STATE_LE_DESK}, or
3438     * {@link android.content.Intent#EXTRA_DOCK_STATE_HE_DESK}.
3439     */
3440    public static final String EXTRA_DOCK_STATE = "android.intent.extra.DOCK_STATE";
3441
3442    /**
3443     * Used as an int value for {@link android.content.Intent#EXTRA_DOCK_STATE}
3444     * to represent that the phone is not in any dock.
3445     */
3446    public static final int EXTRA_DOCK_STATE_UNDOCKED = 0;
3447
3448    /**
3449     * Used as an int value for {@link android.content.Intent#EXTRA_DOCK_STATE}
3450     * to represent that the phone is in a desk dock.
3451     */
3452    public static final int EXTRA_DOCK_STATE_DESK = 1;
3453
3454    /**
3455     * Used as an int value for {@link android.content.Intent#EXTRA_DOCK_STATE}
3456     * to represent that the phone is in a car dock.
3457     */
3458    public static final int EXTRA_DOCK_STATE_CAR = 2;
3459
3460    /**
3461     * Used as an int value for {@link android.content.Intent#EXTRA_DOCK_STATE}
3462     * to represent that the phone is in a analog (low end) dock.
3463     */
3464    public static final int EXTRA_DOCK_STATE_LE_DESK = 3;
3465
3466    /**
3467     * Used as an int value for {@link android.content.Intent#EXTRA_DOCK_STATE}
3468     * to represent that the phone is in a digital (high end) dock.
3469     */
3470    public static final int EXTRA_DOCK_STATE_HE_DESK = 4;
3471
3472    /**
3473     * Boolean that can be supplied as meta-data with a dock activity, to
3474     * indicate that the dock should take over the home key when it is active.
3475     */
3476    public static final String METADATA_DOCK_HOME = "android.dock_home";
3477
3478    /**
3479     * Used as a parcelable extra field in {@link #ACTION_APP_ERROR}, containing
3480     * the bug report.
3481     */
3482    public static final String EXTRA_BUG_REPORT = "android.intent.extra.BUG_REPORT";
3483
3484    /**
3485     * Used in the extra field in the remote intent. It's astring token passed with the
3486     * remote intent.
3487     */
3488    public static final String EXTRA_REMOTE_INTENT_TOKEN =
3489            "android.intent.extra.remote_intent_token";
3490
3491    /**
3492     * @deprecated See {@link #EXTRA_CHANGED_COMPONENT_NAME_LIST}; this field
3493     * will contain only the first name in the list.
3494     */
3495    @Deprecated public static final String EXTRA_CHANGED_COMPONENT_NAME =
3496            "android.intent.extra.changed_component_name";
3497
3498    /**
3499     * This field is part of {@link android.content.Intent#ACTION_PACKAGE_CHANGED},
3500     * and contains a string array of all of the components that have changed.  If
3501     * the state of the overall package has changed, then it will contain an entry
3502     * with the package name itself.
3503     */
3504    public static final String EXTRA_CHANGED_COMPONENT_NAME_LIST =
3505            "android.intent.extra.changed_component_name_list";
3506
3507    /**
3508     * This field is part of
3509     * {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_AVAILABLE},
3510     * {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE}
3511     * and contains a string array of all of the components that have changed.
3512     */
3513    public static final String EXTRA_CHANGED_PACKAGE_LIST =
3514            "android.intent.extra.changed_package_list";
3515
3516    /**
3517     * This field is part of
3518     * {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_AVAILABLE},
3519     * {@link android.content.Intent#ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE}
3520     * and contains an integer array of uids of all of the components
3521     * that have changed.
3522     */
3523    public static final String EXTRA_CHANGED_UID_LIST =
3524            "android.intent.extra.changed_uid_list";
3525
3526    /**
3527     * @hide
3528     * Magic extra system code can use when binding, to give a label for
3529     * who it is that has bound to a service.  This is an integer giving
3530     * a framework string resource that can be displayed to the user.
3531     */
3532    public static final String EXTRA_CLIENT_LABEL =
3533            "android.intent.extra.client_label";
3534
3535    /**
3536     * @hide
3537     * Magic extra system code can use when binding, to give a PendingIntent object
3538     * that can be launched for the user to disable the system's use of this
3539     * service.
3540     */
3541    public static final String EXTRA_CLIENT_INTENT =
3542            "android.intent.extra.client_intent";
3543
3544    /**
3545     * Extra used to indicate that an intent should only return data that is on
3546     * the local device. This is a boolean extra; the default is false. If true,
3547     * an implementation should only allow the user to select data that is
3548     * already on the device, not requiring it be downloaded from a remote
3549     * service when opened.
3550     *
3551     * @see #ACTION_GET_CONTENT
3552     * @see #ACTION_OPEN_DOCUMENT
3553     * @see #ACTION_OPEN_DOCUMENT_TREE
3554     * @see #ACTION_CREATE_DOCUMENT
3555     */
3556    public static final String EXTRA_LOCAL_ONLY =
3557            "android.intent.extra.LOCAL_ONLY";
3558
3559    /**
3560     * Extra used to indicate that an intent can allow the user to select and
3561     * return multiple items. This is a boolean extra; the default is false. If
3562     * true, an implementation is allowed to present the user with a UI where
3563     * they can pick multiple items that are all returned to the caller. When
3564     * this happens, they should be returned as the {@link #getClipData()} part
3565     * of the result Intent.
3566     *
3567     * @see #ACTION_GET_CONTENT
3568     * @see #ACTION_OPEN_DOCUMENT
3569     */
3570    public static final String EXTRA_ALLOW_MULTIPLE =
3571            "android.intent.extra.ALLOW_MULTIPLE";
3572
3573    /**
3574     * The integer userHandle carried with broadcast intents related to addition, removal and
3575     * switching of users and managed profiles - {@link #ACTION_USER_ADDED},
3576     * {@link #ACTION_USER_REMOVED} and {@link #ACTION_USER_SWITCHED}.
3577     *
3578     * @hide
3579     */
3580    public static final String EXTRA_USER_HANDLE =
3581            "android.intent.extra.user_handle";
3582
3583    /**
3584     * The UserHandle carried with broadcasts intents related to addition and removal of managed
3585     * profiles - {@link #ACTION_MANAGED_PROFILE_ADDED} and {@link #ACTION_MANAGED_PROFILE_REMOVED}.
3586     */
3587    public static final String EXTRA_USER =
3588            "android.intent.extra.USER";
3589
3590    /**
3591     * Extra used in the response from a BroadcastReceiver that handles
3592     * {@link #ACTION_GET_RESTRICTION_ENTRIES}. The type of the extra is
3593     * <code>ArrayList&lt;RestrictionEntry&gt;</code>.
3594     */
3595    public static final String EXTRA_RESTRICTIONS_LIST = "android.intent.extra.restrictions_list";
3596
3597    /**
3598     * Extra sent in the intent to the BroadcastReceiver that handles
3599     * {@link #ACTION_GET_RESTRICTION_ENTRIES}. The type of the extra is a Bundle containing
3600     * the restrictions as key/value pairs.
3601     */
3602    public static final String EXTRA_RESTRICTIONS_BUNDLE =
3603            "android.intent.extra.restrictions_bundle";
3604
3605    /**
3606     * Extra used in the response from a BroadcastReceiver that handles
3607     * {@link #ACTION_GET_RESTRICTION_ENTRIES}.
3608     */
3609    public static final String EXTRA_RESTRICTIONS_INTENT =
3610            "android.intent.extra.restrictions_intent";
3611
3612    /**
3613     * Extra used to communicate a set of acceptable MIME types. The type of the
3614     * extra is {@code String[]}. Values may be a combination of concrete MIME
3615     * types (such as "image/png") and/or partial MIME types (such as
3616     * "audio/*").
3617     *
3618     * @see #ACTION_GET_CONTENT
3619     * @see #ACTION_OPEN_DOCUMENT
3620     */
3621    public static final String EXTRA_MIME_TYPES = "android.intent.extra.MIME_TYPES";
3622
3623    /**
3624     * Optional extra for {@link #ACTION_SHUTDOWN} that allows the sender to qualify that
3625     * this shutdown is only for the user space of the system, not a complete shutdown.
3626     * When this is true, hardware devices can use this information to determine that
3627     * they shouldn't do a complete shutdown of their device since this is not a
3628     * complete shutdown down to the kernel, but only user space restarting.
3629     * The default if not supplied is false.
3630     */
3631    public static final String EXTRA_SHUTDOWN_USERSPACE_ONLY
3632            = "android.intent.extra.SHUTDOWN_USERSPACE_ONLY";
3633
3634    /**
3635     * Optional boolean extra for {@link #ACTION_TIME_CHANGED} that indicates the
3636     * user has set their time format preferences to the 24 hour format.
3637     *
3638     * @hide for internal use only.
3639     */
3640    public static final String EXTRA_TIME_PREF_24_HOUR_FORMAT =
3641            "android.intent.extra.TIME_PREF_24_HOUR_FORMAT";
3642
3643    /** {@hide} */
3644    public static final String EXTRA_REASON = "android.intent.extra.REASON";
3645
3646    /**
3647     * Optional {@link android.app.PendingIntent} extra used to deliver the result of the SIM
3648     * activation request.
3649     * TODO: Add information about the structure and response data used with the pending intent.
3650     * @hide
3651     */
3652    public static final String EXTRA_SIM_ACTIVATION_RESPONSE =
3653            "android.intent.extra.SIM_ACTIVATION_RESPONSE";
3654
3655    // ---------------------------------------------------------------------
3656    // ---------------------------------------------------------------------
3657    // Intent flags (see mFlags variable).
3658
3659    /** @hide */
3660    @IntDef(flag = true, value = {
3661            FLAG_GRANT_READ_URI_PERMISSION, FLAG_GRANT_WRITE_URI_PERMISSION,
3662            FLAG_GRANT_PERSISTABLE_URI_PERMISSION, FLAG_GRANT_PREFIX_URI_PERMISSION })
3663    @Retention(RetentionPolicy.SOURCE)
3664    public @interface GrantUriMode {}
3665
3666    /** @hide */
3667    @IntDef(flag = true, value = {
3668            FLAG_GRANT_READ_URI_PERMISSION, FLAG_GRANT_WRITE_URI_PERMISSION })
3669    @Retention(RetentionPolicy.SOURCE)
3670    public @interface AccessUriMode {}
3671
3672    /**
3673     * Test if given mode flags specify an access mode, which must be at least
3674     * read and/or write.
3675     *
3676     * @hide
3677     */
3678    public static boolean isAccessUriMode(int modeFlags) {
3679        return (modeFlags & (Intent.FLAG_GRANT_READ_URI_PERMISSION
3680                | Intent.FLAG_GRANT_WRITE_URI_PERMISSION)) != 0;
3681    }
3682
3683    /**
3684     * If set, the recipient of this Intent will be granted permission to
3685     * perform read operations on the URI in the Intent's data and any URIs
3686     * specified in its ClipData.  When applying to an Intent's ClipData,
3687     * all URIs as well as recursive traversals through data or other ClipData
3688     * in Intent items will be granted; only the grant flags of the top-level
3689     * Intent are used.
3690     */
3691    public static final int FLAG_GRANT_READ_URI_PERMISSION = 0x00000001;
3692    /**
3693     * If set, the recipient of this Intent will be granted permission to
3694     * perform write operations on the URI in the Intent's data and any URIs
3695     * specified in its ClipData.  When applying to an Intent's ClipData,
3696     * all URIs as well as recursive traversals through data or other ClipData
3697     * in Intent items will be granted; only the grant flags of the top-level
3698     * Intent are used.
3699     */
3700    public static final int FLAG_GRANT_WRITE_URI_PERMISSION = 0x00000002;
3701    /**
3702     * Can be set by the caller to indicate that this Intent is coming from
3703     * a background operation, not from direct user interaction.
3704     */
3705    public static final int FLAG_FROM_BACKGROUND = 0x00000004;
3706    /**
3707     * A flag you can enable for debugging: when set, log messages will be
3708     * printed during the resolution of this intent to show you what has
3709     * been found to create the final resolved list.
3710     */
3711    public static final int FLAG_DEBUG_LOG_RESOLUTION = 0x00000008;
3712    /**
3713     * If set, this intent will not match any components in packages that
3714     * are currently stopped.  If this is not set, then the default behavior
3715     * is to include such applications in the result.
3716     */
3717    public static final int FLAG_EXCLUDE_STOPPED_PACKAGES = 0x00000010;
3718    /**
3719     * If set, this intent will always match any components in packages that
3720     * are currently stopped.  This is the default behavior when
3721     * {@link #FLAG_EXCLUDE_STOPPED_PACKAGES} is not set.  If both of these
3722     * flags are set, this one wins (it allows overriding of exclude for
3723     * places where the framework may automatically set the exclude flag).
3724     */
3725    public static final int FLAG_INCLUDE_STOPPED_PACKAGES = 0x00000020;
3726
3727    /**
3728     * When combined with {@link #FLAG_GRANT_READ_URI_PERMISSION} and/or
3729     * {@link #FLAG_GRANT_WRITE_URI_PERMISSION}, the URI permission grant can be
3730     * persisted across device reboots until explicitly revoked with
3731     * {@link Context#revokeUriPermission(Uri, int)}. This flag only offers the
3732     * grant for possible persisting; the receiving application must call
3733     * {@link ContentResolver#takePersistableUriPermission(Uri, int)} to
3734     * actually persist.
3735     *
3736     * @see ContentResolver#takePersistableUriPermission(Uri, int)
3737     * @see ContentResolver#releasePersistableUriPermission(Uri, int)
3738     * @see ContentResolver#getPersistedUriPermissions()
3739     * @see ContentResolver#getOutgoingPersistedUriPermissions()
3740     */
3741    public static final int FLAG_GRANT_PERSISTABLE_URI_PERMISSION = 0x00000040;
3742
3743    /**
3744     * When combined with {@link #FLAG_GRANT_READ_URI_PERMISSION} and/or
3745     * {@link #FLAG_GRANT_WRITE_URI_PERMISSION}, the URI permission grant
3746     * applies to any URI that is a prefix match against the original granted
3747     * URI. (Without this flag, the URI must match exactly for access to be
3748     * granted.) Another URI is considered a prefix match only when scheme,
3749     * authority, and all path segments defined by the prefix are an exact
3750     * match.
3751     */
3752    public static final int FLAG_GRANT_PREFIX_URI_PERMISSION = 0x00000080;
3753
3754    /**
3755     * If set, the new activity is not kept in the history stack.  As soon as
3756     * the user navigates away from it, the activity is finished.  This may also
3757     * be set with the {@link android.R.styleable#AndroidManifestActivity_noHistory
3758     * noHistory} attribute.
3759     *
3760     * <p>If set, {@link android.app.Activity#onActivityResult onActivityResult()}
3761     * is never invoked when the current activity starts a new activity which
3762     * sets a result and finishes.
3763     */
3764    public static final int FLAG_ACTIVITY_NO_HISTORY = 0x40000000;
3765    /**
3766     * If set, the activity will not be launched if it is already running
3767     * at the top of the history stack.
3768     */
3769    public static final int FLAG_ACTIVITY_SINGLE_TOP = 0x20000000;
3770    /**
3771     * If set, this activity will become the start of a new task on this
3772     * history stack.  A task (from the activity that started it to the
3773     * next task activity) defines an atomic group of activities that the
3774     * user can move to.  Tasks can be moved to the foreground and background;
3775     * all of the activities inside of a particular task always remain in
3776     * the same order.  See
3777     * <a href="{@docRoot}guide/topics/fundamentals/tasks-and-back-stack.html">Tasks and Back
3778     * Stack</a> for more information about tasks.
3779     *
3780     * <p>This flag is generally used by activities that want
3781     * to present a "launcher" style behavior: they give the user a list of
3782     * separate things that can be done, which otherwise run completely
3783     * independently of the activity launching them.
3784     *
3785     * <p>When using this flag, if a task is already running for the activity
3786     * you are now starting, then a new activity will not be started; instead,
3787     * the current task will simply be brought to the front of the screen with
3788     * the state it was last in.  See {@link #FLAG_ACTIVITY_MULTIPLE_TASK} for a flag
3789     * to disable this behavior.
3790     *
3791     * <p>This flag can not be used when the caller is requesting a result from
3792     * the activity being launched.
3793     */
3794    public static final int FLAG_ACTIVITY_NEW_TASK = 0x10000000;
3795    /**
3796     * This flag is used to create a new task and launch an activity into it.
3797     * This flag is always paired with either {@link #FLAG_ACTIVITY_NEW_DOCUMENT}
3798     * or {@link #FLAG_ACTIVITY_NEW_TASK}. In both cases these flags alone would
3799     * search through existing tasks for ones matching this Intent. Only if no such
3800     * task is found would a new task be created. When paired with
3801     * FLAG_ACTIVITY_MULTIPLE_TASK both of these behaviors are modified to skip
3802     * the search for a matching task and unconditionally start a new task.
3803     *
3804     * <strong>When used with {@link #FLAG_ACTIVITY_NEW_TASK} do not use this
3805     * flag unless you are implementing your own
3806     * top-level application launcher.</strong>  Used in conjunction with
3807     * {@link #FLAG_ACTIVITY_NEW_TASK} to disable the
3808     * behavior of bringing an existing task to the foreground.  When set,
3809     * a new task is <em>always</em> started to host the Activity for the
3810     * Intent, regardless of whether there is already an existing task running
3811     * the same thing.
3812     *
3813     * <p><strong>Because the default system does not include graphical task management,
3814     * you should not use this flag unless you provide some way for a user to
3815     * return back to the tasks you have launched.</strong>
3816     *
3817     * See {@link #FLAG_ACTIVITY_NEW_DOCUMENT} for details of this flag's use for
3818     * creating new document tasks.
3819     *
3820     * <p>This flag is ignored if one of {@link #FLAG_ACTIVITY_NEW_TASK} or
3821     * {@link #FLAG_ACTIVITY_NEW_DOCUMENT} is not also set.
3822     *
3823     * <p>See
3824     * <a href="{@docRoot}guide/topics/fundamentals/tasks-and-back-stack.html">Tasks and Back
3825     * Stack</a> for more information about tasks.
3826     *
3827     * @see #FLAG_ACTIVITY_NEW_DOCUMENT
3828     * @see #FLAG_ACTIVITY_NEW_TASK
3829     */
3830    public static final int FLAG_ACTIVITY_MULTIPLE_TASK = 0x08000000;
3831    /**
3832     * If set, and the activity being launched is already running in the
3833     * current task, then instead of launching a new instance of that activity,
3834     * all of the other activities on top of it will be closed and this Intent
3835     * will be delivered to the (now on top) old activity as a new Intent.
3836     *
3837     * <p>For example, consider a task consisting of the activities: A, B, C, D.
3838     * If D calls startActivity() with an Intent that resolves to the component
3839     * of activity B, then C and D will be finished and B receive the given
3840     * Intent, resulting in the stack now being: A, B.
3841     *
3842     * <p>The currently running instance of activity B in the above example will
3843     * either receive the new intent you are starting here in its
3844     * onNewIntent() method, or be itself finished and restarted with the
3845     * new intent.  If it has declared its launch mode to be "multiple" (the
3846     * default) and you have not set {@link #FLAG_ACTIVITY_SINGLE_TOP} in
3847     * the same intent, then it will be finished and re-created; for all other
3848     * launch modes or if {@link #FLAG_ACTIVITY_SINGLE_TOP} is set then this
3849     * Intent will be delivered to the current instance's onNewIntent().
3850     *
3851     * <p>This launch mode can also be used to good effect in conjunction with
3852     * {@link #FLAG_ACTIVITY_NEW_TASK}: if used to start the root activity
3853     * of a task, it will bring any currently running instance of that task
3854     * to the foreground, and then clear it to its root state.  This is
3855     * especially useful, for example, when launching an activity from the
3856     * notification manager.
3857     *
3858     * <p>See
3859     * <a href="{@docRoot}guide/topics/fundamentals/tasks-and-back-stack.html">Tasks and Back
3860     * Stack</a> for more information about tasks.
3861     */
3862    public static final int FLAG_ACTIVITY_CLEAR_TOP = 0x04000000;
3863    /**
3864     * If set and this intent is being used to launch a new activity from an
3865     * existing one, then the reply target of the existing activity will be
3866     * transfered to the new activity.  This way the new activity can call
3867     * {@link android.app.Activity#setResult} and have that result sent back to
3868     * the reply target of the original activity.
3869     */
3870    public static final int FLAG_ACTIVITY_FORWARD_RESULT = 0x02000000;
3871    /**
3872     * If set and this intent is being used to launch a new activity from an
3873     * existing one, the current activity will not be counted as the top
3874     * activity for deciding whether the new intent should be delivered to
3875     * the top instead of starting a new one.  The previous activity will
3876     * be used as the top, with the assumption being that the current activity
3877     * will finish itself immediately.
3878     */
3879    public static final int FLAG_ACTIVITY_PREVIOUS_IS_TOP = 0x01000000;
3880    /**
3881     * If set, the new activity is not kept in the list of recently launched
3882     * activities.
3883     */
3884    public static final int FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS = 0x00800000;
3885    /**
3886     * This flag is not normally set by application code, but set for you by
3887     * the system as described in the
3888     * {@link android.R.styleable#AndroidManifestActivity_launchMode
3889     * launchMode} documentation for the singleTask mode.
3890     */
3891    public static final int FLAG_ACTIVITY_BROUGHT_TO_FRONT = 0x00400000;
3892    /**
3893     * If set, and this activity is either being started in a new task or
3894     * bringing to the top an existing task, then it will be launched as
3895     * the front door of the task.  This will result in the application of
3896     * any affinities needed to have that task in the proper state (either
3897     * moving activities to or from it), or simply resetting that task to
3898     * its initial state if needed.
3899     */
3900    public static final int FLAG_ACTIVITY_RESET_TASK_IF_NEEDED = 0x00200000;
3901    /**
3902     * This flag is not normally set by application code, but set for you by
3903     * the system if this activity is being launched from history
3904     * (longpress home key).
3905     */
3906    public static final int FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY = 0x00100000;
3907    /**
3908     * @deprecated As of API 21 this performs identically to
3909     * {@link #FLAG_ACTIVITY_NEW_DOCUMENT} which should be used instead of this.
3910     */
3911    public static final int FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET = 0x00080000;
3912    /**
3913     * This flag is used to open a document into a new task rooted at the activity launched
3914     * by this Intent. Through the use of this flag, or its equivalent attribute,
3915     * {@link android.R.attr#documentLaunchMode} multiple instances of the same activity
3916     * containing different documents will appear in the recent tasks list.
3917     *
3918     * <p>The use of the activity attribute form of this,
3919     * {@link android.R.attr#documentLaunchMode}, is
3920     * preferred over the Intent flag described here. The attribute form allows the
3921     * Activity to specify multiple document behavior for all launchers of the Activity
3922     * whereas using this flag requires each Intent that launches the Activity to specify it.
3923     *
3924     * <p>Note that the default semantics of this flag w.r.t. whether the recents entry for
3925     * it is kept after the activity is finished is different than the use of
3926     * {@link #FLAG_ACTIVITY_NEW_TASK} and {@link android.R.attr#documentLaunchMode} -- if
3927     * this flag is being used to create a new recents entry, then by default that entry
3928     * will be removed once the activity is finished.  You can modify this behavior with
3929     * {@link #FLAG_ACTIVITY_RETAIN_IN_RECENTS}.
3930     *
3931     * <p>FLAG_ACTIVITY_NEW_DOCUMENT may be used in conjunction with {@link
3932     * #FLAG_ACTIVITY_MULTIPLE_TASK}. When used alone it is the
3933     * equivalent of the Activity manifest specifying {@link
3934     * android.R.attr#documentLaunchMode}="intoExisting". When used with
3935     * FLAG_ACTIVITY_MULTIPLE_TASK it is the equivalent of the Activity manifest specifying
3936     * {@link android.R.attr#documentLaunchMode}="always".
3937     *
3938     * Refer to {@link android.R.attr#documentLaunchMode} for more information.
3939     *
3940     * @see android.R.attr#documentLaunchMode
3941     * @see #FLAG_ACTIVITY_MULTIPLE_TASK
3942     */
3943    public static final int FLAG_ACTIVITY_NEW_DOCUMENT = FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET;
3944    /**
3945     * If set, this flag will prevent the normal {@link android.app.Activity#onUserLeaveHint}
3946     * callback from occurring on the current frontmost activity before it is
3947     * paused as the newly-started activity is brought to the front.
3948     *
3949     * <p>Typically, an activity can rely on that callback to indicate that an
3950     * explicit user action has caused their activity to be moved out of the
3951     * foreground. The callback marks an appropriate point in the activity's
3952     * lifecycle for it to dismiss any notifications that it intends to display
3953     * "until the user has seen them," such as a blinking LED.
3954     *
3955     * <p>If an activity is ever started via any non-user-driven events such as
3956     * phone-call receipt or an alarm handler, this flag should be passed to {@link
3957     * Context#startActivity Context.startActivity}, ensuring that the pausing
3958     * activity does not think the user has acknowledged its notification.
3959     */
3960    public static final int FLAG_ACTIVITY_NO_USER_ACTION = 0x00040000;
3961    /**
3962     * If set in an Intent passed to {@link Context#startActivity Context.startActivity()},
3963     * this flag will cause the launched activity to be brought to the front of its
3964     * task's history stack if it is already running.
3965     *
3966     * <p>For example, consider a task consisting of four activities: A, B, C, D.
3967     * If D calls startActivity() with an Intent that resolves to the component
3968     * of activity B, then B will be brought to the front of the history stack,
3969     * with this resulting order:  A, C, D, B.
3970     *
3971     * This flag will be ignored if {@link #FLAG_ACTIVITY_CLEAR_TOP} is also
3972     * specified.
3973     */
3974    public static final int FLAG_ACTIVITY_REORDER_TO_FRONT = 0X00020000;
3975    /**
3976     * If set in an Intent passed to {@link Context#startActivity Context.startActivity()},
3977     * this flag will prevent the system from applying an activity transition
3978     * animation to go to the next activity state.  This doesn't mean an
3979     * animation will never run -- if another activity change happens that doesn't
3980     * specify this flag before the activity started here is displayed, then
3981     * that transition will be used.  This flag can be put to good use
3982     * when you are going to do a series of activity operations but the
3983     * animation seen by the user shouldn't be driven by the first activity
3984     * change but rather a later one.
3985     */
3986    public static final int FLAG_ACTIVITY_NO_ANIMATION = 0X00010000;
3987    /**
3988     * If set in an Intent passed to {@link Context#startActivity Context.startActivity()},
3989     * this flag will cause any existing task that would be associated with the
3990     * activity to be cleared before the activity is started.  That is, the activity
3991     * becomes the new root of an otherwise empty task, and any old activities
3992     * are finished.  This can only be used in conjunction with {@link #FLAG_ACTIVITY_NEW_TASK}.
3993     */
3994    public static final int FLAG_ACTIVITY_CLEAR_TASK = 0X00008000;
3995    /**
3996     * If set in an Intent passed to {@link Context#startActivity Context.startActivity()},
3997     * this flag will cause a newly launching task to be placed on top of the current
3998     * home activity task (if there is one).  That is, pressing back from the task
3999     * will always return the user to home even if that was not the last activity they
4000     * saw.   This can only be used in conjunction with {@link #FLAG_ACTIVITY_NEW_TASK}.
4001     */
4002    public static final int FLAG_ACTIVITY_TASK_ON_HOME = 0X00004000;
4003    /**
4004     * By default a document created by {@link #FLAG_ACTIVITY_NEW_DOCUMENT} will
4005     * have its entry in recent tasks removed when the user closes it (with back
4006     * or however else it may finish()). If you would like to instead allow the
4007     * document to be kept in recents so that it can be re-launched, you can use
4008     * this flag. When set and the task's activity is finished, the recents
4009     * entry will remain in the interface for the user to re-launch it, like a
4010     * recents entry for a top-level application.
4011     * <p>
4012     * The receiving activity can override this request with
4013     * {@link android.R.attr#autoRemoveFromRecents} or by explcitly calling
4014     * {@link android.app.Activity#finishAndRemoveTask()
4015     * Activity.finishAndRemoveTask()}.
4016     */
4017    public static final int FLAG_ACTIVITY_RETAIN_IN_RECENTS = 0x00002000;
4018
4019    /**
4020     * If set, when sending a broadcast only registered receivers will be
4021     * called -- no BroadcastReceiver components will be launched.
4022     */
4023    public static final int FLAG_RECEIVER_REGISTERED_ONLY = 0x40000000;
4024    /**
4025     * If set, when sending a broadcast the new broadcast will replace
4026     * any existing pending broadcast that matches it.  Matching is defined
4027     * by {@link Intent#filterEquals(Intent) Intent.filterEquals} returning
4028     * true for the intents of the two broadcasts.  When a match is found,
4029     * the new broadcast (and receivers associated with it) will replace the
4030     * existing one in the pending broadcast list, remaining at the same
4031     * position in the list.
4032     *
4033     * <p>This flag is most typically used with sticky broadcasts, which
4034     * only care about delivering the most recent values of the broadcast
4035     * to their receivers.
4036     */
4037    public static final int FLAG_RECEIVER_REPLACE_PENDING = 0x20000000;
4038    /**
4039     * If set, when sending a broadcast the recipient is allowed to run at
4040     * foreground priority, with a shorter timeout interval.  During normal
4041     * broadcasts the receivers are not automatically hoisted out of the
4042     * background priority class.
4043     */
4044    public static final int FLAG_RECEIVER_FOREGROUND = 0x10000000;
4045    /**
4046     * If this is an ordered broadcast, don't allow receivers to abort the broadcast.
4047     * They can still propagate results through to later receivers, but they can not prevent
4048     * later receivers from seeing the broadcast.
4049     */
4050    public static final int FLAG_RECEIVER_NO_ABORT = 0x08000000;
4051    /**
4052     * If set, when sending a broadcast <i>before boot has completed</i> only
4053     * registered receivers will be called -- no BroadcastReceiver components
4054     * will be launched.  Sticky intent state will be recorded properly even
4055     * if no receivers wind up being called.  If {@link #FLAG_RECEIVER_REGISTERED_ONLY}
4056     * is specified in the broadcast intent, this flag is unnecessary.
4057     *
4058     * <p>This flag is only for use by system sevices as a convenience to
4059     * avoid having to implement a more complex mechanism around detection
4060     * of boot completion.
4061     *
4062     * @hide
4063     */
4064    public static final int FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT = 0x04000000;
4065    /**
4066     * Set when this broadcast is for a boot upgrade, a special mode that
4067     * allows the broadcast to be sent before the system is ready and launches
4068     * the app process with no providers running in it.
4069     * @hide
4070     */
4071    public static final int FLAG_RECEIVER_BOOT_UPGRADE = 0x02000000;
4072
4073    /**
4074     * @hide Flags that can't be changed with PendingIntent.
4075     */
4076    public static final int IMMUTABLE_FLAGS = FLAG_GRANT_READ_URI_PERMISSION
4077            | FLAG_GRANT_WRITE_URI_PERMISSION | FLAG_GRANT_PERSISTABLE_URI_PERMISSION
4078            | FLAG_GRANT_PREFIX_URI_PERMISSION;
4079
4080    // ---------------------------------------------------------------------
4081    // ---------------------------------------------------------------------
4082    // toUri() and parseUri() options.
4083
4084    /**
4085     * Flag for use with {@link #toUri} and {@link #parseUri}: the URI string
4086     * always has the "intent:" scheme.  This syntax can be used when you want
4087     * to later disambiguate between URIs that are intended to describe an
4088     * Intent vs. all others that should be treated as raw URIs.  When used
4089     * with {@link #parseUri}, any other scheme will result in a generic
4090     * VIEW action for that raw URI.
4091     */
4092    public static final int URI_INTENT_SCHEME = 1<<0;
4093
4094    /**
4095     * Flag for use with {@link #toUri} and {@link #parseUri}: the URI string
4096     * always has the "android-app:" scheme.  This is a variation of
4097     * {@link #URI_INTENT_SCHEME} whose format is simpler for the case of an
4098     * http/https URI being delivered to a specific package name.  The format
4099     * is:
4100     *
4101     * <pre class="prettyprint">
4102     * android-app://{package_id}[/{scheme}[/{host}[/{path}]]][#Intent;{...}]</pre>
4103     *
4104     * <p>In this scheme, only the <code>package_id</code> is required.  If you include a host,
4105     * you must also include a scheme; including a path also requires both a host and a scheme.
4106     * The final #Intent; fragment can be used without a scheme, host, or path.
4107     * Note that this can not be
4108     * used with intents that have a {@link #setSelector}, since the base intent
4109     * will always have an explicit package name.</p>
4110     *
4111     * <p>Some examples of how this scheme maps to Intent objects:</p>
4112     * <table border="2" width="85%" align="center" frame="hsides" rules="rows">
4113     *     <colgroup align="left" />
4114     *     <colgroup align="left" />
4115     *     <thead>
4116     *     <tr><th>URI</th> <th>Intent</th></tr>
4117     *     </thead>
4118     *
4119     *     <tbody>
4120     *     <tr><td><code>android-app://com.example.app</code></td>
4121     *         <td><table style="margin:0;border:0;cellpadding:0;cellspacing:0">
4122     *             <tr><td>Action: </td><td>{@link #ACTION_MAIN}</td></tr>
4123     *             <tr><td>Package: </td><td><code>com.example.app</code></td></tr>
4124     *         </table></td>
4125     *     </tr>
4126     *     <tr><td><code>android-app://com.example.app/http/example.com</code></td>
4127     *         <td><table style="margin:0;border:0;cellpadding:0;cellspacing:0">
4128     *             <tr><td>Action: </td><td>{@link #ACTION_VIEW}</td></tr>
4129     *             <tr><td>Data: </td><td><code>http://example.com/</code></td></tr>
4130     *             <tr><td>Package: </td><td><code>com.example.app</code></td></tr>
4131     *         </table></td>
4132     *     </tr>
4133     *     <tr><td><code>android-app://com.example.app/http/example.com/foo?1234</code></td>
4134     *         <td><table style="margin:0;border:0;cellpadding:0;cellspacing:0">
4135     *             <tr><td>Action: </td><td>{@link #ACTION_VIEW}</td></tr>
4136     *             <tr><td>Data: </td><td><code>http://example.com/foo?1234</code></td></tr>
4137     *             <tr><td>Package: </td><td><code>com.example.app</code></td></tr>
4138     *         </table></td>
4139     *     </tr>
4140     *     <tr><td><code>android-app://com.example.app/<br />#Intent;action=com.example.MY_ACTION;end</code></td>
4141     *         <td><table style="margin:0;border:0;cellpadding:0;cellspacing:0">
4142     *             <tr><td>Action: </td><td><code>com.example.MY_ACTION</code></td></tr>
4143     *             <tr><td>Package: </td><td><code>com.example.app</code></td></tr>
4144     *         </table></td>
4145     *     </tr>
4146     *     <tr><td><code>android-app://com.example.app/http/example.com/foo?1234<br />#Intent;action=com.example.MY_ACTION;end</code></td>
4147     *         <td><table style="margin:0;border:0;cellpadding:0;cellspacing:0">
4148     *             <tr><td>Action: </td><td><code>com.example.MY_ACTION</code></td></tr>
4149     *             <tr><td>Data: </td><td><code>http://example.com/foo?1234</code></td></tr>
4150     *             <tr><td>Package: </td><td><code>com.example.app</code></td></tr>
4151     *         </table></td>
4152     *     </tr>
4153     *     <tr><td><code>android-app://com.example.app/<br />#Intent;action=com.example.MY_ACTION;<br />i.some_int=100;S.some_str=hello;end</code></td>
4154     *         <td><table border="" style="margin:0" >
4155     *             <tr><td>Action: </td><td><code>com.example.MY_ACTION</code></td></tr>
4156     *             <tr><td>Package: </td><td><code>com.example.app</code></td></tr>
4157     *             <tr><td>Extras: </td><td><code>some_int=(int)100<br />some_str=(String)hello</code></td></tr>
4158     *         </table></td>
4159     *     </tr>
4160     *     </tbody>
4161     * </table>
4162     */
4163    public static final int URI_ANDROID_APP_SCHEME = 1<<1;
4164
4165    /**
4166     * Flag for use with {@link #toUri} and {@link #parseUri}: allow parsing
4167     * of unsafe information.  In particular, the flags {@link #FLAG_GRANT_READ_URI_PERMISSION},
4168     * {@link #FLAG_GRANT_WRITE_URI_PERMISSION}, {@link #FLAG_GRANT_PERSISTABLE_URI_PERMISSION},
4169     * and {@link #FLAG_GRANT_PREFIX_URI_PERMISSION} flags can not be set, so that the
4170     * generated Intent can not cause unexpected data access to happen.
4171     *
4172     * <p>If you do not trust the source of the URI being parsed, you should still do further
4173     * processing to protect yourself from it.  In particular, when using it to start an
4174     * activity you should usually add in {@link #CATEGORY_BROWSABLE} to limit the activities
4175     * that can handle it.</p>
4176     */
4177    public static final int URI_ALLOW_UNSAFE = 1<<2;
4178
4179    // ---------------------------------------------------------------------
4180
4181    private String mAction;
4182    private Uri mData;
4183    private String mType;
4184    private String mPackage;
4185    private ComponentName mComponent;
4186    private int mFlags;
4187    private ArraySet<String> mCategories;
4188    private Bundle mExtras;
4189    private Rect mSourceBounds;
4190    private Intent mSelector;
4191    private ClipData mClipData;
4192    private int mContentUserHint = UserHandle.USER_CURRENT;
4193
4194    // ---------------------------------------------------------------------
4195
4196    /**
4197     * Create an empty intent.
4198     */
4199    public Intent() {
4200    }
4201
4202    /**
4203     * Copy constructor.
4204     */
4205    public Intent(Intent o) {
4206        this.mAction = o.mAction;
4207        this.mData = o.mData;
4208        this.mType = o.mType;
4209        this.mPackage = o.mPackage;
4210        this.mComponent = o.mComponent;
4211        this.mFlags = o.mFlags;
4212        this.mContentUserHint = o.mContentUserHint;
4213        if (o.mCategories != null) {
4214            this.mCategories = new ArraySet<String>(o.mCategories);
4215        }
4216        if (o.mExtras != null) {
4217            this.mExtras = new Bundle(o.mExtras);
4218        }
4219        if (o.mSourceBounds != null) {
4220            this.mSourceBounds = new Rect(o.mSourceBounds);
4221        }
4222        if (o.mSelector != null) {
4223            this.mSelector = new Intent(o.mSelector);
4224        }
4225        if (o.mClipData != null) {
4226            this.mClipData = new ClipData(o.mClipData);
4227        }
4228    }
4229
4230    @Override
4231    public Object clone() {
4232        return new Intent(this);
4233    }
4234
4235    private Intent(Intent o, boolean all) {
4236        this.mAction = o.mAction;
4237        this.mData = o.mData;
4238        this.mType = o.mType;
4239        this.mPackage = o.mPackage;
4240        this.mComponent = o.mComponent;
4241        if (o.mCategories != null) {
4242            this.mCategories = new ArraySet<String>(o.mCategories);
4243        }
4244    }
4245
4246    /**
4247     * Make a clone of only the parts of the Intent that are relevant for
4248     * filter matching: the action, data, type, component, and categories.
4249     */
4250    public Intent cloneFilter() {
4251        return new Intent(this, false);
4252    }
4253
4254    /**
4255     * Create an intent with a given action.  All other fields (data, type,
4256     * class) are null.  Note that the action <em>must</em> be in a
4257     * namespace because Intents are used globally in the system -- for
4258     * example the system VIEW action is android.intent.action.VIEW; an
4259     * application's custom action would be something like
4260     * com.google.app.myapp.CUSTOM_ACTION.
4261     *
4262     * @param action The Intent action, such as ACTION_VIEW.
4263     */
4264    public Intent(String action) {
4265        setAction(action);
4266    }
4267
4268    /**
4269     * Create an intent with a given action and for a given data url.  Note
4270     * that the action <em>must</em> be in a namespace because Intents are
4271     * used globally in the system -- for example the system VIEW action is
4272     * android.intent.action.VIEW; an application's custom action would be
4273     * something like com.google.app.myapp.CUSTOM_ACTION.
4274     *
4275     * <p><em>Note: scheme and host name matching in the Android framework is
4276     * case-sensitive, unlike the formal RFC.  As a result,
4277     * you should always ensure that you write your Uri with these elements
4278     * using lower case letters, and normalize any Uris you receive from
4279     * outside of Android to ensure the scheme and host is lower case.</em></p>
4280     *
4281     * @param action The Intent action, such as ACTION_VIEW.
4282     * @param uri The Intent data URI.
4283     */
4284    public Intent(String action, Uri uri) {
4285        setAction(action);
4286        mData = uri;
4287    }
4288
4289    /**
4290     * Create an intent for a specific component.  All other fields (action, data,
4291     * type, class) are null, though they can be modified later with explicit
4292     * calls.  This provides a convenient way to create an intent that is
4293     * intended to execute a hard-coded class name, rather than relying on the
4294     * system to find an appropriate class for you; see {@link #setComponent}
4295     * for more information on the repercussions of this.
4296     *
4297     * @param packageContext A Context of the application package implementing
4298     * this class.
4299     * @param cls The component class that is to be used for the intent.
4300     *
4301     * @see #setClass
4302     * @see #setComponent
4303     * @see #Intent(String, android.net.Uri , Context, Class)
4304     */
4305    public Intent(Context packageContext, Class<?> cls) {
4306        mComponent = new ComponentName(packageContext, cls);
4307    }
4308
4309    /**
4310     * Create an intent for a specific component with a specified action and data.
4311     * This is equivalent to using {@link #Intent(String, android.net.Uri)} to
4312     * construct the Intent and then calling {@link #setClass} to set its
4313     * class.
4314     *
4315     * <p><em>Note: scheme and host name matching in the Android framework is
4316     * case-sensitive, unlike the formal RFC.  As a result,
4317     * you should always ensure that you write your Uri with these elements
4318     * using lower case letters, and normalize any Uris you receive from
4319     * outside of Android to ensure the scheme and host is lower case.</em></p>
4320     *
4321     * @param action The Intent action, such as ACTION_VIEW.
4322     * @param uri The Intent data URI.
4323     * @param packageContext A Context of the application package implementing
4324     * this class.
4325     * @param cls The component class that is to be used for the intent.
4326     *
4327     * @see #Intent(String, android.net.Uri)
4328     * @see #Intent(Context, Class)
4329     * @see #setClass
4330     * @see #setComponent
4331     */
4332    public Intent(String action, Uri uri,
4333            Context packageContext, Class<?> cls) {
4334        setAction(action);
4335        mData = uri;
4336        mComponent = new ComponentName(packageContext, cls);
4337    }
4338
4339    /**
4340     * Create an intent to launch the main (root) activity of a task.  This
4341     * is the Intent that is started when the application's is launched from
4342     * Home.  For anything else that wants to launch an application in the
4343     * same way, it is important that they use an Intent structured the same
4344     * way, and can use this function to ensure this is the case.
4345     *
4346     * <p>The returned Intent has the given Activity component as its explicit
4347     * component, {@link #ACTION_MAIN} as its action, and includes the
4348     * category {@link #CATEGORY_LAUNCHER}.  This does <em>not</em> have
4349     * {@link #FLAG_ACTIVITY_NEW_TASK} set, though typically you will want
4350     * to do that through {@link #addFlags(int)} on the returned Intent.
4351     *
4352     * @param mainActivity The main activity component that this Intent will
4353     * launch.
4354     * @return Returns a newly created Intent that can be used to launch the
4355     * activity as a main application entry.
4356     *
4357     * @see #setClass
4358     * @see #setComponent
4359     */
4360    public static Intent makeMainActivity(ComponentName mainActivity) {
4361        Intent intent = new Intent(ACTION_MAIN);
4362        intent.setComponent(mainActivity);
4363        intent.addCategory(CATEGORY_LAUNCHER);
4364        return intent;
4365    }
4366
4367    /**
4368     * Make an Intent for the main activity of an application, without
4369     * specifying a specific activity to run but giving a selector to find
4370     * the activity.  This results in a final Intent that is structured
4371     * the same as when the application is launched from
4372     * Home.  For anything else that wants to launch an application in the
4373     * same way, it is important that they use an Intent structured the same
4374     * way, and can use this function to ensure this is the case.
4375     *
4376     * <p>The returned Intent has {@link #ACTION_MAIN} as its action, and includes the
4377     * category {@link #CATEGORY_LAUNCHER}.  This does <em>not</em> have
4378     * {@link #FLAG_ACTIVITY_NEW_TASK} set, though typically you will want
4379     * to do that through {@link #addFlags(int)} on the returned Intent.
4380     *
4381     * @param selectorAction The action name of the Intent's selector.
4382     * @param selectorCategory The name of a category to add to the Intent's
4383     * selector.
4384     * @return Returns a newly created Intent that can be used to launch the
4385     * activity as a main application entry.
4386     *
4387     * @see #setSelector(Intent)
4388     */
4389    public static Intent makeMainSelectorActivity(String selectorAction,
4390            String selectorCategory) {
4391        Intent intent = new Intent(ACTION_MAIN);
4392        intent.addCategory(CATEGORY_LAUNCHER);
4393        Intent selector = new Intent();
4394        selector.setAction(selectorAction);
4395        selector.addCategory(selectorCategory);
4396        intent.setSelector(selector);
4397        return intent;
4398    }
4399
4400    /**
4401     * Make an Intent that can be used to re-launch an application's task
4402     * in its base state.  This is like {@link #makeMainActivity(ComponentName)},
4403     * but also sets the flags {@link #FLAG_ACTIVITY_NEW_TASK} and
4404     * {@link #FLAG_ACTIVITY_CLEAR_TASK}.
4405     *
4406     * @param mainActivity The activity component that is the root of the
4407     * task; this is the activity that has been published in the application's
4408     * manifest as the main launcher icon.
4409     *
4410     * @return Returns a newly created Intent that can be used to relaunch the
4411     * activity's task in its root state.
4412     */
4413    public static Intent makeRestartActivityTask(ComponentName mainActivity) {
4414        Intent intent = makeMainActivity(mainActivity);
4415        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
4416                | Intent.FLAG_ACTIVITY_CLEAR_TASK);
4417        return intent;
4418    }
4419
4420    /**
4421     * Call {@link #parseUri} with 0 flags.
4422     * @deprecated Use {@link #parseUri} instead.
4423     */
4424    @Deprecated
4425    public static Intent getIntent(String uri) throws URISyntaxException {
4426        return parseUri(uri, 0);
4427    }
4428
4429    /**
4430     * Create an intent from a URI.  This URI may encode the action,
4431     * category, and other intent fields, if it was returned by
4432     * {@link #toUri}.  If the Intent was not generate by toUri(), its data
4433     * will be the entire URI and its action will be ACTION_VIEW.
4434     *
4435     * <p>The URI given here must not be relative -- that is, it must include
4436     * the scheme and full path.
4437     *
4438     * @param uri The URI to turn into an Intent.
4439     * @param flags Additional processing flags.  Either 0,
4440     * {@link #URI_INTENT_SCHEME}, or {@link #URI_ANDROID_APP_SCHEME}.
4441     *
4442     * @return Intent The newly created Intent object.
4443     *
4444     * @throws URISyntaxException Throws URISyntaxError if the basic URI syntax
4445     * it bad (as parsed by the Uri class) or the Intent data within the
4446     * URI is invalid.
4447     *
4448     * @see #toUri
4449     */
4450    public static Intent parseUri(String uri, int flags) throws URISyntaxException {
4451        int i = 0;
4452        try {
4453            final boolean androidApp = uri.startsWith("android-app:");
4454
4455            // Validate intent scheme if requested.
4456            if ((flags&(URI_INTENT_SCHEME|URI_ANDROID_APP_SCHEME)) != 0) {
4457                if (!uri.startsWith("intent:") && !androidApp) {
4458                    Intent intent = new Intent(ACTION_VIEW);
4459                    try {
4460                        intent.setData(Uri.parse(uri));
4461                    } catch (IllegalArgumentException e) {
4462                        throw new URISyntaxException(uri, e.getMessage());
4463                    }
4464                    return intent;
4465                }
4466            }
4467
4468            i = uri.lastIndexOf("#");
4469            // simple case
4470            if (i == -1) {
4471                if (!androidApp) {
4472                    return new Intent(ACTION_VIEW, Uri.parse(uri));
4473                }
4474
4475            // old format Intent URI
4476            } else if (!uri.startsWith("#Intent;", i)) {
4477                if (!androidApp) {
4478                    return getIntentOld(uri, flags);
4479                } else {
4480                    i = -1;
4481                }
4482            }
4483
4484            // new format
4485            Intent intent = new Intent(ACTION_VIEW);
4486            Intent baseIntent = intent;
4487            boolean explicitAction = false;
4488            boolean inSelector = false;
4489
4490            // fetch data part, if present
4491            String scheme = null;
4492            String data;
4493            if (i >= 0) {
4494                data = uri.substring(0, i);
4495                i += 8; // length of "#Intent;"
4496            } else {
4497                data = uri;
4498            }
4499
4500            // loop over contents of Intent, all name=value;
4501            while (i >= 0 && !uri.startsWith("end", i)) {
4502                int eq = uri.indexOf('=', i);
4503                if (eq < 0) eq = i-1;
4504                int semi = uri.indexOf(';', i);
4505                String value = eq < semi ? Uri.decode(uri.substring(eq + 1, semi)) : "";
4506
4507                // action
4508                if (uri.startsWith("action=", i)) {
4509                    intent.setAction(value);
4510                    if (!inSelector) {
4511                        explicitAction = true;
4512                    }
4513                }
4514
4515                // categories
4516                else if (uri.startsWith("category=", i)) {
4517                    intent.addCategory(value);
4518                }
4519
4520                // type
4521                else if (uri.startsWith("type=", i)) {
4522                    intent.mType = value;
4523                }
4524
4525                // launch flags
4526                else if (uri.startsWith("launchFlags=", i)) {
4527                    intent.mFlags = Integer.decode(value).intValue();
4528                    if ((flags& URI_ALLOW_UNSAFE) == 0) {
4529                        intent.mFlags &= ~IMMUTABLE_FLAGS;
4530                    }
4531                }
4532
4533                // package
4534                else if (uri.startsWith("package=", i)) {
4535                    intent.mPackage = value;
4536                }
4537
4538                // component
4539                else if (uri.startsWith("component=", i)) {
4540                    intent.mComponent = ComponentName.unflattenFromString(value);
4541                }
4542
4543                // scheme
4544                else if (uri.startsWith("scheme=", i)) {
4545                    if (inSelector) {
4546                        intent.mData = Uri.parse(value + ":");
4547                    } else {
4548                        scheme = value;
4549                    }
4550                }
4551
4552                // source bounds
4553                else if (uri.startsWith("sourceBounds=", i)) {
4554                    intent.mSourceBounds = Rect.unflattenFromString(value);
4555                }
4556
4557                // selector
4558                else if (semi == (i+3) && uri.startsWith("SEL", i)) {
4559                    intent = new Intent();
4560                    inSelector = true;
4561                }
4562
4563                // extra
4564                else {
4565                    String key = Uri.decode(uri.substring(i + 2, eq));
4566                    // create Bundle if it doesn't already exist
4567                    if (intent.mExtras == null) intent.mExtras = new Bundle();
4568                    Bundle b = intent.mExtras;
4569                    // add EXTRA
4570                    if      (uri.startsWith("S.", i)) b.putString(key, value);
4571                    else if (uri.startsWith("B.", i)) b.putBoolean(key, Boolean.parseBoolean(value));
4572                    else if (uri.startsWith("b.", i)) b.putByte(key, Byte.parseByte(value));
4573                    else if (uri.startsWith("c.", i)) b.putChar(key, value.charAt(0));
4574                    else if (uri.startsWith("d.", i)) b.putDouble(key, Double.parseDouble(value));
4575                    else if (uri.startsWith("f.", i)) b.putFloat(key, Float.parseFloat(value));
4576                    else if (uri.startsWith("i.", i)) b.putInt(key, Integer.parseInt(value));
4577                    else if (uri.startsWith("l.", i)) b.putLong(key, Long.parseLong(value));
4578                    else if (uri.startsWith("s.", i)) b.putShort(key, Short.parseShort(value));
4579                    else throw new URISyntaxException(uri, "unknown EXTRA type", i);
4580                }
4581
4582                // move to the next item
4583                i = semi + 1;
4584            }
4585
4586            if (inSelector) {
4587                // The Intent had a selector; fix it up.
4588                if (baseIntent.mPackage == null) {
4589                    baseIntent.setSelector(intent);
4590                }
4591                intent = baseIntent;
4592            }
4593
4594            if (data != null) {
4595                if (data.startsWith("intent:")) {
4596                    data = data.substring(7);
4597                    if (scheme != null) {
4598                        data = scheme + ':' + data;
4599                    }
4600                } else if (data.startsWith("android-app:")) {
4601                    if (data.charAt(12) == '/' && data.charAt(13) == '/') {
4602                        // Correctly formed android-app, first part is package name.
4603                        int end = data.indexOf('/', 14);
4604                        if (end < 0) {
4605                            // All we have is a package name.
4606                            intent.mPackage = data.substring(14);
4607                            if (!explicitAction) {
4608                                intent.setAction(ACTION_MAIN);
4609                            }
4610                            data = "";
4611                        } else {
4612                            // Target the Intent at the given package name always.
4613                            String authority = null;
4614                            intent.mPackage = data.substring(14, end);
4615                            int newEnd;
4616                            if ((end+1) < data.length()) {
4617                                if ((newEnd=data.indexOf('/', end+1)) >= 0) {
4618                                    // Found a scheme, remember it.
4619                                    scheme = data.substring(end+1, newEnd);
4620                                    end = newEnd;
4621                                    if (end < data.length() && (newEnd=data.indexOf('/', end+1)) >= 0) {
4622                                        // Found a authority, remember it.
4623                                        authority = data.substring(end+1, newEnd);
4624                                        end = newEnd;
4625                                    }
4626                                } else {
4627                                    // All we have is a scheme.
4628                                    scheme = data.substring(end+1);
4629                                }
4630                            }
4631                            if (scheme == null) {
4632                                // If there was no scheme, then this just targets the package.
4633                                if (!explicitAction) {
4634                                    intent.setAction(ACTION_MAIN);
4635                                }
4636                                data = "";
4637                            } else if (authority == null) {
4638                                data = scheme + ":";
4639                            } else {
4640                                data = scheme + "://" + authority + data.substring(end);
4641                            }
4642                        }
4643                    } else {
4644                        data = "";
4645                    }
4646                }
4647
4648                if (data.length() > 0) {
4649                    try {
4650                        intent.mData = Uri.parse(data);
4651                    } catch (IllegalArgumentException e) {
4652                        throw new URISyntaxException(uri, e.getMessage());
4653                    }
4654                }
4655            }
4656
4657            return intent;
4658
4659        } catch (IndexOutOfBoundsException e) {
4660            throw new URISyntaxException(uri, "illegal Intent URI format", i);
4661        }
4662    }
4663
4664    public static Intent getIntentOld(String uri) throws URISyntaxException {
4665        return getIntentOld(uri, 0);
4666    }
4667
4668    private static Intent getIntentOld(String uri, int flags) throws URISyntaxException {
4669        Intent intent;
4670
4671        int i = uri.lastIndexOf('#');
4672        if (i >= 0) {
4673            String action = null;
4674            final int intentFragmentStart = i;
4675            boolean isIntentFragment = false;
4676
4677            i++;
4678
4679            if (uri.regionMatches(i, "action(", 0, 7)) {
4680                isIntentFragment = true;
4681                i += 7;
4682                int j = uri.indexOf(')', i);
4683                action = uri.substring(i, j);
4684                i = j + 1;
4685            }
4686
4687            intent = new Intent(action);
4688
4689            if (uri.regionMatches(i, "categories(", 0, 11)) {
4690                isIntentFragment = true;
4691                i += 11;
4692                int j = uri.indexOf(')', i);
4693                while (i < j) {
4694                    int sep = uri.indexOf('!', i);
4695                    if (sep < 0 || sep > j) sep = j;
4696                    if (i < sep) {
4697                        intent.addCategory(uri.substring(i, sep));
4698                    }
4699                    i = sep + 1;
4700                }
4701                i = j + 1;
4702            }
4703
4704            if (uri.regionMatches(i, "type(", 0, 5)) {
4705                isIntentFragment = true;
4706                i += 5;
4707                int j = uri.indexOf(')', i);
4708                intent.mType = uri.substring(i, j);
4709                i = j + 1;
4710            }
4711
4712            if (uri.regionMatches(i, "launchFlags(", 0, 12)) {
4713                isIntentFragment = true;
4714                i += 12;
4715                int j = uri.indexOf(')', i);
4716                intent.mFlags = Integer.decode(uri.substring(i, j)).intValue();
4717                if ((flags& URI_ALLOW_UNSAFE) == 0) {
4718                    intent.mFlags &= ~IMMUTABLE_FLAGS;
4719                }
4720                i = j + 1;
4721            }
4722
4723            if (uri.regionMatches(i, "component(", 0, 10)) {
4724                isIntentFragment = true;
4725                i += 10;
4726                int j = uri.indexOf(')', i);
4727                int sep = uri.indexOf('!', i);
4728                if (sep >= 0 && sep < j) {
4729                    String pkg = uri.substring(i, sep);
4730                    String cls = uri.substring(sep + 1, j);
4731                    intent.mComponent = new ComponentName(pkg, cls);
4732                }
4733                i = j + 1;
4734            }
4735
4736            if (uri.regionMatches(i, "extras(", 0, 7)) {
4737                isIntentFragment = true;
4738                i += 7;
4739
4740                final int closeParen = uri.indexOf(')', i);
4741                if (closeParen == -1) throw new URISyntaxException(uri,
4742                        "EXTRA missing trailing ')'", i);
4743
4744                while (i < closeParen) {
4745                    // fetch the key value
4746                    int j = uri.indexOf('=', i);
4747                    if (j <= i + 1 || i >= closeParen) {
4748                        throw new URISyntaxException(uri, "EXTRA missing '='", i);
4749                    }
4750                    char type = uri.charAt(i);
4751                    i++;
4752                    String key = uri.substring(i, j);
4753                    i = j + 1;
4754
4755                    // get type-value
4756                    j = uri.indexOf('!', i);
4757                    if (j == -1 || j >= closeParen) j = closeParen;
4758                    if (i >= j) throw new URISyntaxException(uri, "EXTRA missing '!'", i);
4759                    String value = uri.substring(i, j);
4760                    i = j;
4761
4762                    // create Bundle if it doesn't already exist
4763                    if (intent.mExtras == null) intent.mExtras = new Bundle();
4764
4765                    // add item to bundle
4766                    try {
4767                        switch (type) {
4768                            case 'S':
4769                                intent.mExtras.putString(key, Uri.decode(value));
4770                                break;
4771                            case 'B':
4772                                intent.mExtras.putBoolean(key, Boolean.parseBoolean(value));
4773                                break;
4774                            case 'b':
4775                                intent.mExtras.putByte(key, Byte.parseByte(value));
4776                                break;
4777                            case 'c':
4778                                intent.mExtras.putChar(key, Uri.decode(value).charAt(0));
4779                                break;
4780                            case 'd':
4781                                intent.mExtras.putDouble(key, Double.parseDouble(value));
4782                                break;
4783                            case 'f':
4784                                intent.mExtras.putFloat(key, Float.parseFloat(value));
4785                                break;
4786                            case 'i':
4787                                intent.mExtras.putInt(key, Integer.parseInt(value));
4788                                break;
4789                            case 'l':
4790                                intent.mExtras.putLong(key, Long.parseLong(value));
4791                                break;
4792                            case 's':
4793                                intent.mExtras.putShort(key, Short.parseShort(value));
4794                                break;
4795                            default:
4796                                throw new URISyntaxException(uri, "EXTRA has unknown type", i);
4797                        }
4798                    } catch (NumberFormatException e) {
4799                        throw new URISyntaxException(uri, "EXTRA value can't be parsed", i);
4800                    }
4801
4802                    char ch = uri.charAt(i);
4803                    if (ch == ')') break;
4804                    if (ch != '!') throw new URISyntaxException(uri, "EXTRA missing '!'", i);
4805                    i++;
4806                }
4807            }
4808
4809            if (isIntentFragment) {
4810                intent.mData = Uri.parse(uri.substring(0, intentFragmentStart));
4811            } else {
4812                intent.mData = Uri.parse(uri);
4813            }
4814
4815            if (intent.mAction == null) {
4816                // By default, if no action is specified, then use VIEW.
4817                intent.mAction = ACTION_VIEW;
4818            }
4819
4820        } else {
4821            intent = new Intent(ACTION_VIEW, Uri.parse(uri));
4822        }
4823
4824        return intent;
4825    }
4826
4827    /**
4828     * Retrieve the general action to be performed, such as
4829     * {@link #ACTION_VIEW}.  The action describes the general way the rest of
4830     * the information in the intent should be interpreted -- most importantly,
4831     * what to do with the data returned by {@link #getData}.
4832     *
4833     * @return The action of this intent or null if none is specified.
4834     *
4835     * @see #setAction
4836     */
4837    public String getAction() {
4838        return mAction;
4839    }
4840
4841    /**
4842     * Retrieve data this intent is operating on.  This URI specifies the name
4843     * of the data; often it uses the content: scheme, specifying data in a
4844     * content provider.  Other schemes may be handled by specific activities,
4845     * such as http: by the web browser.
4846     *
4847     * @return The URI of the data this intent is targeting or null.
4848     *
4849     * @see #getScheme
4850     * @see #setData
4851     */
4852    public Uri getData() {
4853        return mData;
4854    }
4855
4856    /**
4857     * The same as {@link #getData()}, but returns the URI as an encoded
4858     * String.
4859     */
4860    public String getDataString() {
4861        return mData != null ? mData.toString() : null;
4862    }
4863
4864    /**
4865     * Return the scheme portion of the intent's data.  If the data is null or
4866     * does not include a scheme, null is returned.  Otherwise, the scheme
4867     * prefix without the final ':' is returned, i.e. "http".
4868     *
4869     * <p>This is the same as calling getData().getScheme() (and checking for
4870     * null data).
4871     *
4872     * @return The scheme of this intent.
4873     *
4874     * @see #getData
4875     */
4876    public String getScheme() {
4877        return mData != null ? mData.getScheme() : null;
4878    }
4879
4880    /**
4881     * Retrieve any explicit MIME type included in the intent.  This is usually
4882     * null, as the type is determined by the intent data.
4883     *
4884     * @return If a type was manually set, it is returned; else null is
4885     *         returned.
4886     *
4887     * @see #resolveType(ContentResolver)
4888     * @see #setType
4889     */
4890    public String getType() {
4891        return mType;
4892    }
4893
4894    /**
4895     * Return the MIME data type of this intent.  If the type field is
4896     * explicitly set, that is simply returned.  Otherwise, if the data is set,
4897     * the type of that data is returned.  If neither fields are set, a null is
4898     * returned.
4899     *
4900     * @return The MIME type of this intent.
4901     *
4902     * @see #getType
4903     * @see #resolveType(ContentResolver)
4904     */
4905    public String resolveType(Context context) {
4906        return resolveType(context.getContentResolver());
4907    }
4908
4909    /**
4910     * Return the MIME data type of this intent.  If the type field is
4911     * explicitly set, that is simply returned.  Otherwise, if the data is set,
4912     * the type of that data is returned.  If neither fields are set, a null is
4913     * returned.
4914     *
4915     * @param resolver A ContentResolver that can be used to determine the MIME
4916     *                 type of the intent's data.
4917     *
4918     * @return The MIME type of this intent.
4919     *
4920     * @see #getType
4921     * @see #resolveType(Context)
4922     */
4923    public String resolveType(ContentResolver resolver) {
4924        if (mType != null) {
4925            return mType;
4926        }
4927        if (mData != null) {
4928            if ("content".equals(mData.getScheme())) {
4929                return resolver.getType(mData);
4930            }
4931        }
4932        return null;
4933    }
4934
4935    /**
4936     * Return the MIME data type of this intent, only if it will be needed for
4937     * intent resolution.  This is not generally useful for application code;
4938     * it is used by the frameworks for communicating with back-end system
4939     * services.
4940     *
4941     * @param resolver A ContentResolver that can be used to determine the MIME
4942     *                 type of the intent's data.
4943     *
4944     * @return The MIME type of this intent, or null if it is unknown or not
4945     *         needed.
4946     */
4947    public String resolveTypeIfNeeded(ContentResolver resolver) {
4948        if (mComponent != null) {
4949            return mType;
4950        }
4951        return resolveType(resolver);
4952    }
4953
4954    /**
4955     * Check if a category exists in the intent.
4956     *
4957     * @param category The category to check.
4958     *
4959     * @return boolean True if the intent contains the category, else false.
4960     *
4961     * @see #getCategories
4962     * @see #addCategory
4963     */
4964    public boolean hasCategory(String category) {
4965        return mCategories != null && mCategories.contains(category);
4966    }
4967
4968    /**
4969     * Return the set of all categories in the intent.  If there are no categories,
4970     * returns NULL.
4971     *
4972     * @return The set of categories you can examine.  Do not modify!
4973     *
4974     * @see #hasCategory
4975     * @see #addCategory
4976     */
4977    public Set<String> getCategories() {
4978        return mCategories;
4979    }
4980
4981    /**
4982     * Return the specific selector associated with this Intent.  If there is
4983     * none, returns null.  See {@link #setSelector} for more information.
4984     *
4985     * @see #setSelector
4986     */
4987    public Intent getSelector() {
4988        return mSelector;
4989    }
4990
4991    /**
4992     * Return the {@link ClipData} associated with this Intent.  If there is
4993     * none, returns null.  See {@link #setClipData} for more information.
4994     *
4995     * @see #setClipData
4996     */
4997    public ClipData getClipData() {
4998        return mClipData;
4999    }
5000
5001    /** @hide */
5002    public int getContentUserHint() {
5003        return mContentUserHint;
5004    }
5005
5006    /**
5007     * Sets the ClassLoader that will be used when unmarshalling
5008     * any Parcelable values from the extras of this Intent.
5009     *
5010     * @param loader a ClassLoader, or null to use the default loader
5011     * at the time of unmarshalling.
5012     */
5013    public void setExtrasClassLoader(ClassLoader loader) {
5014        if (mExtras != null) {
5015            mExtras.setClassLoader(loader);
5016        }
5017    }
5018
5019    /**
5020     * Returns true if an extra value is associated with the given name.
5021     * @param name the extra's name
5022     * @return true if the given extra is present.
5023     */
5024    public boolean hasExtra(String name) {
5025        return mExtras != null && mExtras.containsKey(name);
5026    }
5027
5028    /**
5029     * Returns true if the Intent's extras contain a parcelled file descriptor.
5030     * @return true if the Intent contains a parcelled file descriptor.
5031     */
5032    public boolean hasFileDescriptors() {
5033        return mExtras != null && mExtras.hasFileDescriptors();
5034    }
5035
5036    /** @hide */
5037    public void setAllowFds(boolean allowFds) {
5038        if (mExtras != null) {
5039            mExtras.setAllowFds(allowFds);
5040        }
5041    }
5042
5043    /**
5044     * Retrieve extended data from the intent.
5045     *
5046     * @param name The name of the desired item.
5047     *
5048     * @return the value of an item that previously added with putExtra()
5049     * or null if none was found.
5050     *
5051     * @deprecated
5052     * @hide
5053     */
5054    @Deprecated
5055    public Object getExtra(String name) {
5056        return getExtra(name, null);
5057    }
5058
5059    /**
5060     * Retrieve extended data from the intent.
5061     *
5062     * @param name The name of the desired item.
5063     * @param defaultValue the value to be returned if no value of the desired
5064     * type is stored with the given name.
5065     *
5066     * @return the value of an item that previously added with putExtra()
5067     * or the default value if none was found.
5068     *
5069     * @see #putExtra(String, boolean)
5070     */
5071    public boolean getBooleanExtra(String name, boolean defaultValue) {
5072        return mExtras == null ? defaultValue :
5073            mExtras.getBoolean(name, defaultValue);
5074    }
5075
5076    /**
5077     * Retrieve extended data from the intent.
5078     *
5079     * @param name The name of the desired item.
5080     * @param defaultValue the value to be returned if no value of the desired
5081     * type is stored with the given name.
5082     *
5083     * @return the value of an item that previously added with putExtra()
5084     * or the default value if none was found.
5085     *
5086     * @see #putExtra(String, byte)
5087     */
5088    public byte getByteExtra(String name, byte defaultValue) {
5089        return mExtras == null ? defaultValue :
5090            mExtras.getByte(name, defaultValue);
5091    }
5092
5093    /**
5094     * Retrieve extended data from the intent.
5095     *
5096     * @param name The name of the desired item.
5097     * @param defaultValue the value to be returned if no value of the desired
5098     * type is stored with the given name.
5099     *
5100     * @return the value of an item that previously added with putExtra()
5101     * or the default value if none was found.
5102     *
5103     * @see #putExtra(String, short)
5104     */
5105    public short getShortExtra(String name, short defaultValue) {
5106        return mExtras == null ? defaultValue :
5107            mExtras.getShort(name, defaultValue);
5108    }
5109
5110    /**
5111     * Retrieve extended data from the intent.
5112     *
5113     * @param name The name of the desired item.
5114     * @param defaultValue the value to be returned if no value of the desired
5115     * type is stored with the given name.
5116     *
5117     * @return the value of an item that previously added with putExtra()
5118     * or the default value if none was found.
5119     *
5120     * @see #putExtra(String, char)
5121     */
5122    public char getCharExtra(String name, char defaultValue) {
5123        return mExtras == null ? defaultValue :
5124            mExtras.getChar(name, defaultValue);
5125    }
5126
5127    /**
5128     * Retrieve extended data from the intent.
5129     *
5130     * @param name The name of the desired item.
5131     * @param defaultValue the value to be returned if no value of the desired
5132     * type is stored with the given name.
5133     *
5134     * @return the value of an item that previously added with putExtra()
5135     * or the default value if none was found.
5136     *
5137     * @see #putExtra(String, int)
5138     */
5139    public int getIntExtra(String name, int defaultValue) {
5140        return mExtras == null ? defaultValue :
5141            mExtras.getInt(name, defaultValue);
5142    }
5143
5144    /**
5145     * Retrieve extended data from the intent.
5146     *
5147     * @param name The name of the desired item.
5148     * @param defaultValue the value to be returned if no value of the desired
5149     * type is stored with the given name.
5150     *
5151     * @return the value of an item that previously added with putExtra()
5152     * or the default value if none was found.
5153     *
5154     * @see #putExtra(String, long)
5155     */
5156    public long getLongExtra(String name, long defaultValue) {
5157        return mExtras == null ? defaultValue :
5158            mExtras.getLong(name, defaultValue);
5159    }
5160
5161    /**
5162     * Retrieve extended data from the intent.
5163     *
5164     * @param name The name of the desired item.
5165     * @param defaultValue the value to be returned if no value of the desired
5166     * type is stored with the given name.
5167     *
5168     * @return the value of an item that previously added with putExtra(),
5169     * or the default value if no such item is present
5170     *
5171     * @see #putExtra(String, float)
5172     */
5173    public float getFloatExtra(String name, float defaultValue) {
5174        return mExtras == null ? defaultValue :
5175            mExtras.getFloat(name, defaultValue);
5176    }
5177
5178    /**
5179     * Retrieve extended data from the intent.
5180     *
5181     * @param name The name of the desired item.
5182     * @param defaultValue the value to be returned if no value of the desired
5183     * type is stored with the given name.
5184     *
5185     * @return the value of an item that previously added with putExtra()
5186     * or the default value if none was found.
5187     *
5188     * @see #putExtra(String, double)
5189     */
5190    public double getDoubleExtra(String name, double defaultValue) {
5191        return mExtras == null ? defaultValue :
5192            mExtras.getDouble(name, defaultValue);
5193    }
5194
5195    /**
5196     * Retrieve extended data from the intent.
5197     *
5198     * @param name The name of the desired item.
5199     *
5200     * @return the value of an item that previously added with putExtra()
5201     * or null if no String value was found.
5202     *
5203     * @see #putExtra(String, String)
5204     */
5205    public String getStringExtra(String name) {
5206        return mExtras == null ? null : mExtras.getString(name);
5207    }
5208
5209    /**
5210     * Retrieve extended data from the intent.
5211     *
5212     * @param name The name of the desired item.
5213     *
5214     * @return the value of an item that previously added with putExtra()
5215     * or null if no CharSequence value was found.
5216     *
5217     * @see #putExtra(String, CharSequence)
5218     */
5219    public CharSequence getCharSequenceExtra(String name) {
5220        return mExtras == null ? null : mExtras.getCharSequence(name);
5221    }
5222
5223    /**
5224     * Retrieve extended data from the intent.
5225     *
5226     * @param name The name of the desired item.
5227     *
5228     * @return the value of an item that previously added with putExtra()
5229     * or null if no Parcelable value was found.
5230     *
5231     * @see #putExtra(String, Parcelable)
5232     */
5233    public <T extends Parcelable> T getParcelableExtra(String name) {
5234        return mExtras == null ? null : mExtras.<T>getParcelable(name);
5235    }
5236
5237    /**
5238     * Retrieve extended data from the intent.
5239     *
5240     * @param name The name of the desired item.
5241     *
5242     * @return the value of an item that previously added with putExtra()
5243     * or null if no Parcelable[] value was found.
5244     *
5245     * @see #putExtra(String, Parcelable[])
5246     */
5247    public Parcelable[] getParcelableArrayExtra(String name) {
5248        return mExtras == null ? null : mExtras.getParcelableArray(name);
5249    }
5250
5251    /**
5252     * Retrieve extended data from the intent.
5253     *
5254     * @param name The name of the desired item.
5255     *
5256     * @return the value of an item that previously added with putExtra()
5257     * or null if no ArrayList<Parcelable> value was found.
5258     *
5259     * @see #putParcelableArrayListExtra(String, ArrayList)
5260     */
5261    public <T extends Parcelable> ArrayList<T> getParcelableArrayListExtra(String name) {
5262        return mExtras == null ? null : mExtras.<T>getParcelableArrayList(name);
5263    }
5264
5265    /**
5266     * Retrieve extended data from the intent.
5267     *
5268     * @param name The name of the desired item.
5269     *
5270     * @return the value of an item that previously added with putExtra()
5271     * or null if no Serializable value was found.
5272     *
5273     * @see #putExtra(String, Serializable)
5274     */
5275    public Serializable getSerializableExtra(String name) {
5276        return mExtras == null ? null : mExtras.getSerializable(name);
5277    }
5278
5279    /**
5280     * Retrieve extended data from the intent.
5281     *
5282     * @param name The name of the desired item.
5283     *
5284     * @return the value of an item that previously added with putExtra()
5285     * or null if no ArrayList<Integer> value was found.
5286     *
5287     * @see #putIntegerArrayListExtra(String, ArrayList)
5288     */
5289    public ArrayList<Integer> getIntegerArrayListExtra(String name) {
5290        return mExtras == null ? null : mExtras.getIntegerArrayList(name);
5291    }
5292
5293    /**
5294     * Retrieve extended data from the intent.
5295     *
5296     * @param name The name of the desired item.
5297     *
5298     * @return the value of an item that previously added with putExtra()
5299     * or null if no ArrayList<String> value was found.
5300     *
5301     * @see #putStringArrayListExtra(String, ArrayList)
5302     */
5303    public ArrayList<String> getStringArrayListExtra(String name) {
5304        return mExtras == null ? null : mExtras.getStringArrayList(name);
5305    }
5306
5307    /**
5308     * Retrieve extended data from the intent.
5309     *
5310     * @param name The name of the desired item.
5311     *
5312     * @return the value of an item that previously added with putExtra()
5313     * or null if no ArrayList<CharSequence> value was found.
5314     *
5315     * @see #putCharSequenceArrayListExtra(String, ArrayList)
5316     */
5317    public ArrayList<CharSequence> getCharSequenceArrayListExtra(String name) {
5318        return mExtras == null ? null : mExtras.getCharSequenceArrayList(name);
5319    }
5320
5321    /**
5322     * Retrieve extended data from the intent.
5323     *
5324     * @param name The name of the desired item.
5325     *
5326     * @return the value of an item that previously added with putExtra()
5327     * or null if no boolean array value was found.
5328     *
5329     * @see #putExtra(String, boolean[])
5330     */
5331    public boolean[] getBooleanArrayExtra(String name) {
5332        return mExtras == null ? null : mExtras.getBooleanArray(name);
5333    }
5334
5335    /**
5336     * Retrieve extended data from the intent.
5337     *
5338     * @param name The name of the desired item.
5339     *
5340     * @return the value of an item that previously added with putExtra()
5341     * or null if no byte array value was found.
5342     *
5343     * @see #putExtra(String, byte[])
5344     */
5345    public byte[] getByteArrayExtra(String name) {
5346        return mExtras == null ? null : mExtras.getByteArray(name);
5347    }
5348
5349    /**
5350     * Retrieve extended data from the intent.
5351     *
5352     * @param name The name of the desired item.
5353     *
5354     * @return the value of an item that previously added with putExtra()
5355     * or null if no short array value was found.
5356     *
5357     * @see #putExtra(String, short[])
5358     */
5359    public short[] getShortArrayExtra(String name) {
5360        return mExtras == null ? null : mExtras.getShortArray(name);
5361    }
5362
5363    /**
5364     * Retrieve extended data from the intent.
5365     *
5366     * @param name The name of the desired item.
5367     *
5368     * @return the value of an item that previously added with putExtra()
5369     * or null if no char array value was found.
5370     *
5371     * @see #putExtra(String, char[])
5372     */
5373    public char[] getCharArrayExtra(String name) {
5374        return mExtras == null ? null : mExtras.getCharArray(name);
5375    }
5376
5377    /**
5378     * Retrieve extended data from the intent.
5379     *
5380     * @param name The name of the desired item.
5381     *
5382     * @return the value of an item that previously added with putExtra()
5383     * or null if no int array value was found.
5384     *
5385     * @see #putExtra(String, int[])
5386     */
5387    public int[] getIntArrayExtra(String name) {
5388        return mExtras == null ? null : mExtras.getIntArray(name);
5389    }
5390
5391    /**
5392     * Retrieve extended data from the intent.
5393     *
5394     * @param name The name of the desired item.
5395     *
5396     * @return the value of an item that previously added with putExtra()
5397     * or null if no long array value was found.
5398     *
5399     * @see #putExtra(String, long[])
5400     */
5401    public long[] getLongArrayExtra(String name) {
5402        return mExtras == null ? null : mExtras.getLongArray(name);
5403    }
5404
5405    /**
5406     * Retrieve extended data from the intent.
5407     *
5408     * @param name The name of the desired item.
5409     *
5410     * @return the value of an item that previously added with putExtra()
5411     * or null if no float array value was found.
5412     *
5413     * @see #putExtra(String, float[])
5414     */
5415    public float[] getFloatArrayExtra(String name) {
5416        return mExtras == null ? null : mExtras.getFloatArray(name);
5417    }
5418
5419    /**
5420     * Retrieve extended data from the intent.
5421     *
5422     * @param name The name of the desired item.
5423     *
5424     * @return the value of an item that previously added with putExtra()
5425     * or null if no double array value was found.
5426     *
5427     * @see #putExtra(String, double[])
5428     */
5429    public double[] getDoubleArrayExtra(String name) {
5430        return mExtras == null ? null : mExtras.getDoubleArray(name);
5431    }
5432
5433    /**
5434     * Retrieve extended data from the intent.
5435     *
5436     * @param name The name of the desired item.
5437     *
5438     * @return the value of an item that previously added with putExtra()
5439     * or null if no String array value was found.
5440     *
5441     * @see #putExtra(String, String[])
5442     */
5443    public String[] getStringArrayExtra(String name) {
5444        return mExtras == null ? null : mExtras.getStringArray(name);
5445    }
5446
5447    /**
5448     * Retrieve extended data from the intent.
5449     *
5450     * @param name The name of the desired item.
5451     *
5452     * @return the value of an item that previously added with putExtra()
5453     * or null if no CharSequence array value was found.
5454     *
5455     * @see #putExtra(String, CharSequence[])
5456     */
5457    public CharSequence[] getCharSequenceArrayExtra(String name) {
5458        return mExtras == null ? null : mExtras.getCharSequenceArray(name);
5459    }
5460
5461    /**
5462     * Retrieve extended data from the intent.
5463     *
5464     * @param name The name of the desired item.
5465     *
5466     * @return the value of an item that previously added with putExtra()
5467     * or null if no Bundle value was found.
5468     *
5469     * @see #putExtra(String, Bundle)
5470     */
5471    public Bundle getBundleExtra(String name) {
5472        return mExtras == null ? null : mExtras.getBundle(name);
5473    }
5474
5475    /**
5476     * Retrieve extended data from the intent.
5477     *
5478     * @param name The name of the desired item.
5479     *
5480     * @return the value of an item that previously added with putExtra()
5481     * or null if no IBinder value was found.
5482     *
5483     * @see #putExtra(String, IBinder)
5484     *
5485     * @deprecated
5486     * @hide
5487     */
5488    @Deprecated
5489    public IBinder getIBinderExtra(String name) {
5490        return mExtras == null ? null : mExtras.getIBinder(name);
5491    }
5492
5493    /**
5494     * Retrieve extended data from the intent.
5495     *
5496     * @param name The name of the desired item.
5497     * @param defaultValue The default value to return in case no item is
5498     * associated with the key 'name'
5499     *
5500     * @return the value of an item that previously added with putExtra()
5501     * or defaultValue if none was found.
5502     *
5503     * @see #putExtra
5504     *
5505     * @deprecated
5506     * @hide
5507     */
5508    @Deprecated
5509    public Object getExtra(String name, Object defaultValue) {
5510        Object result = defaultValue;
5511        if (mExtras != null) {
5512            Object result2 = mExtras.get(name);
5513            if (result2 != null) {
5514                result = result2;
5515            }
5516        }
5517
5518        return result;
5519    }
5520
5521    /**
5522     * Retrieves a map of extended data from the intent.
5523     *
5524     * @return the map of all extras previously added with putExtra(),
5525     * or null if none have been added.
5526     */
5527    public Bundle getExtras() {
5528        return (mExtras != null)
5529                ? new Bundle(mExtras)
5530                : null;
5531    }
5532
5533    /**
5534     * Filter extras to only basic types.
5535     * @hide
5536     */
5537    public void removeUnsafeExtras() {
5538        if (mExtras != null) {
5539            mExtras.filterValues();
5540        }
5541    }
5542
5543    /**
5544     * Retrieve any special flags associated with this intent.  You will
5545     * normally just set them with {@link #setFlags} and let the system
5546     * take the appropriate action with them.
5547     *
5548     * @return int The currently set flags.
5549     *
5550     * @see #setFlags
5551     */
5552    public int getFlags() {
5553        return mFlags;
5554    }
5555
5556    /** @hide */
5557    public boolean isExcludingStopped() {
5558        return (mFlags&(FLAG_EXCLUDE_STOPPED_PACKAGES|FLAG_INCLUDE_STOPPED_PACKAGES))
5559                == FLAG_EXCLUDE_STOPPED_PACKAGES;
5560    }
5561
5562    /**
5563     * Retrieve the application package name this Intent is limited to.  When
5564     * resolving an Intent, if non-null this limits the resolution to only
5565     * components in the given application package.
5566     *
5567     * @return The name of the application package for the Intent.
5568     *
5569     * @see #resolveActivity
5570     * @see #setPackage
5571     */
5572    public String getPackage() {
5573        return mPackage;
5574    }
5575
5576    /**
5577     * Retrieve the concrete component associated with the intent.  When receiving
5578     * an intent, this is the component that was found to best handle it (that is,
5579     * yourself) and will always be non-null; in all other cases it will be
5580     * null unless explicitly set.
5581     *
5582     * @return The name of the application component to handle the intent.
5583     *
5584     * @see #resolveActivity
5585     * @see #setComponent
5586     */
5587    public ComponentName getComponent() {
5588        return mComponent;
5589    }
5590
5591    /**
5592     * Get the bounds of the sender of this intent, in screen coordinates.  This can be
5593     * used as a hint to the receiver for animations and the like.  Null means that there
5594     * is no source bounds.
5595     */
5596    public Rect getSourceBounds() {
5597        return mSourceBounds;
5598    }
5599
5600    /**
5601     * Return the Activity component that should be used to handle this intent.
5602     * The appropriate component is determined based on the information in the
5603     * intent, evaluated as follows:
5604     *
5605     * <p>If {@link #getComponent} returns an explicit class, that is returned
5606     * without any further consideration.
5607     *
5608     * <p>The activity must handle the {@link Intent#CATEGORY_DEFAULT} Intent
5609     * category to be considered.
5610     *
5611     * <p>If {@link #getAction} is non-NULL, the activity must handle this
5612     * action.
5613     *
5614     * <p>If {@link #resolveType} returns non-NULL, the activity must handle
5615     * this type.
5616     *
5617     * <p>If {@link #addCategory} has added any categories, the activity must
5618     * handle ALL of the categories specified.
5619     *
5620     * <p>If {@link #getPackage} is non-NULL, only activity components in
5621     * that application package will be considered.
5622     *
5623     * <p>If there are no activities that satisfy all of these conditions, a
5624     * null string is returned.
5625     *
5626     * <p>If multiple activities are found to satisfy the intent, the one with
5627     * the highest priority will be used.  If there are multiple activities
5628     * with the same priority, the system will either pick the best activity
5629     * based on user preference, or resolve to a system class that will allow
5630     * the user to pick an activity and forward from there.
5631     *
5632     * <p>This method is implemented simply by calling
5633     * {@link PackageManager#resolveActivity} with the "defaultOnly" parameter
5634     * true.</p>
5635     * <p> This API is called for you as part of starting an activity from an
5636     * intent.  You do not normally need to call it yourself.</p>
5637     *
5638     * @param pm The package manager with which to resolve the Intent.
5639     *
5640     * @return Name of the component implementing an activity that can
5641     *         display the intent.
5642     *
5643     * @see #setComponent
5644     * @see #getComponent
5645     * @see #resolveActivityInfo
5646     */
5647    public ComponentName resolveActivity(PackageManager pm) {
5648        if (mComponent != null) {
5649            return mComponent;
5650        }
5651
5652        ResolveInfo info = pm.resolveActivity(
5653            this, PackageManager.MATCH_DEFAULT_ONLY);
5654        if (info != null) {
5655            return new ComponentName(
5656                    info.activityInfo.applicationInfo.packageName,
5657                    info.activityInfo.name);
5658        }
5659
5660        return null;
5661    }
5662
5663    /**
5664     * Resolve the Intent into an {@link ActivityInfo}
5665     * describing the activity that should execute the intent.  Resolution
5666     * follows the same rules as described for {@link #resolveActivity}, but
5667     * you get back the completely information about the resolved activity
5668     * instead of just its class name.
5669     *
5670     * @param pm The package manager with which to resolve the Intent.
5671     * @param flags Addition information to retrieve as per
5672     * {@link PackageManager#getActivityInfo(ComponentName, int)
5673     * PackageManager.getActivityInfo()}.
5674     *
5675     * @return PackageManager.ActivityInfo
5676     *
5677     * @see #resolveActivity
5678     */
5679    public ActivityInfo resolveActivityInfo(PackageManager pm, int flags) {
5680        ActivityInfo ai = null;
5681        if (mComponent != null) {
5682            try {
5683                ai = pm.getActivityInfo(mComponent, flags);
5684            } catch (PackageManager.NameNotFoundException e) {
5685                // ignore
5686            }
5687        } else {
5688            ResolveInfo info = pm.resolveActivity(
5689                this, PackageManager.MATCH_DEFAULT_ONLY | flags);
5690            if (info != null) {
5691                ai = info.activityInfo;
5692            }
5693        }
5694
5695        return ai;
5696    }
5697
5698    /**
5699     * Special function for use by the system to resolve service
5700     * intents to system apps.  Throws an exception if there are
5701     * multiple potential matches to the Intent.  Returns null if
5702     * there are no matches.
5703     * @hide
5704     */
5705    public ComponentName resolveSystemService(PackageManager pm, int flags) {
5706        if (mComponent != null) {
5707            return mComponent;
5708        }
5709
5710        List<ResolveInfo> results = pm.queryIntentServices(this, flags);
5711        if (results == null) {
5712            return null;
5713        }
5714        ComponentName comp = null;
5715        for (int i=0; i<results.size(); i++) {
5716            ResolveInfo ri = results.get(i);
5717            if ((ri.serviceInfo.applicationInfo.flags&ApplicationInfo.FLAG_SYSTEM) == 0) {
5718                continue;
5719            }
5720            ComponentName foundComp = new ComponentName(ri.serviceInfo.applicationInfo.packageName,
5721                    ri.serviceInfo.name);
5722            if (comp != null) {
5723                throw new IllegalStateException("Multiple system services handle " + this
5724                        + ": " + comp + ", " + foundComp);
5725            }
5726            comp = foundComp;
5727        }
5728        return comp;
5729    }
5730
5731    /**
5732     * Set the general action to be performed.
5733     *
5734     * @param action An action name, such as ACTION_VIEW.  Application-specific
5735     *               actions should be prefixed with the vendor's package name.
5736     *
5737     * @return Returns the same Intent object, for chaining multiple calls
5738     * into a single statement.
5739     *
5740     * @see #getAction
5741     */
5742    public Intent setAction(String action) {
5743        mAction = action != null ? action.intern() : null;
5744        return this;
5745    }
5746
5747    /**
5748     * Set the data this intent is operating on.  This method automatically
5749     * clears any type that was previously set by {@link #setType} or
5750     * {@link #setTypeAndNormalize}.
5751     *
5752     * <p><em>Note: scheme matching in the Android framework is
5753     * case-sensitive, unlike the formal RFC. As a result,
5754     * you should always write your Uri with a lower case scheme,
5755     * or use {@link Uri#normalizeScheme} or
5756     * {@link #setDataAndNormalize}
5757     * to ensure that the scheme is converted to lower case.</em>
5758     *
5759     * @param data The Uri of the data this intent is now targeting.
5760     *
5761     * @return Returns the same Intent object, for chaining multiple calls
5762     * into a single statement.
5763     *
5764     * @see #getData
5765     * @see #setDataAndNormalize
5766     * @see android.net.Uri#normalizeScheme()
5767     */
5768    public Intent setData(Uri data) {
5769        mData = data;
5770        mType = null;
5771        return this;
5772    }
5773
5774    /**
5775     * Normalize and set the data this intent is operating on.
5776     *
5777     * <p>This method automatically clears any type that was
5778     * previously set (for example, by {@link #setType}).
5779     *
5780     * <p>The data Uri is normalized using
5781     * {@link android.net.Uri#normalizeScheme} before it is set,
5782     * so really this is just a convenience method for
5783     * <pre>
5784     * setData(data.normalize())
5785     * </pre>
5786     *
5787     * @param data The Uri of the data this intent is now targeting.
5788     *
5789     * @return Returns the same Intent object, for chaining multiple calls
5790     * into a single statement.
5791     *
5792     * @see #getData
5793     * @see #setType
5794     * @see android.net.Uri#normalizeScheme
5795     */
5796    public Intent setDataAndNormalize(Uri data) {
5797        return setData(data.normalizeScheme());
5798    }
5799
5800    /**
5801     * Set an explicit MIME data type.
5802     *
5803     * <p>This is used to create intents that only specify a type and not data,
5804     * for example to indicate the type of data to return.
5805     *
5806     * <p>This method automatically clears any data that was
5807     * previously set (for example by {@link #setData}).
5808     *
5809     * <p><em>Note: MIME type matching in the Android framework is
5810     * case-sensitive, unlike formal RFC MIME types.  As a result,
5811     * you should always write your MIME types with lower case letters,
5812     * or use {@link #normalizeMimeType} or {@link #setTypeAndNormalize}
5813     * to ensure that it is converted to lower case.</em>
5814     *
5815     * @param type The MIME type of the data being handled by this intent.
5816     *
5817     * @return Returns the same Intent object, for chaining multiple calls
5818     * into a single statement.
5819     *
5820     * @see #getType
5821     * @see #setTypeAndNormalize
5822     * @see #setDataAndType
5823     * @see #normalizeMimeType
5824     */
5825    public Intent setType(String type) {
5826        mData = null;
5827        mType = type;
5828        return this;
5829    }
5830
5831    /**
5832     * Normalize and set an explicit MIME data type.
5833     *
5834     * <p>This is used to create intents that only specify a type and not data,
5835     * for example to indicate the type of data to return.
5836     *
5837     * <p>This method automatically clears any data that was
5838     * previously set (for example by {@link #setData}).
5839     *
5840     * <p>The MIME type is normalized using
5841     * {@link #normalizeMimeType} before it is set,
5842     * so really this is just a convenience method for
5843     * <pre>
5844     * setType(Intent.normalizeMimeType(type))
5845     * </pre>
5846     *
5847     * @param type The MIME type of the data being handled by this intent.
5848     *
5849     * @return Returns the same Intent object, for chaining multiple calls
5850     * into a single statement.
5851     *
5852     * @see #getType
5853     * @see #setData
5854     * @see #normalizeMimeType
5855     */
5856    public Intent setTypeAndNormalize(String type) {
5857        return setType(normalizeMimeType(type));
5858    }
5859
5860    /**
5861     * (Usually optional) Set the data for the intent along with an explicit
5862     * MIME data type.  This method should very rarely be used -- it allows you
5863     * to override the MIME type that would ordinarily be inferred from the
5864     * data with your own type given here.
5865     *
5866     * <p><em>Note: MIME type and Uri scheme matching in the
5867     * Android framework is case-sensitive, unlike the formal RFC definitions.
5868     * As a result, you should always write these elements with lower case letters,
5869     * or use {@link #normalizeMimeType} or {@link android.net.Uri#normalizeScheme} or
5870     * {@link #setDataAndTypeAndNormalize}
5871     * to ensure that they are converted to lower case.</em>
5872     *
5873     * @param data The Uri of the data this intent is now targeting.
5874     * @param type The MIME type of the data being handled by this intent.
5875     *
5876     * @return Returns the same Intent object, for chaining multiple calls
5877     * into a single statement.
5878     *
5879     * @see #setType
5880     * @see #setData
5881     * @see #normalizeMimeType
5882     * @see android.net.Uri#normalizeScheme
5883     * @see #setDataAndTypeAndNormalize
5884     */
5885    public Intent setDataAndType(Uri data, String type) {
5886        mData = data;
5887        mType = type;
5888        return this;
5889    }
5890
5891    /**
5892     * (Usually optional) Normalize and set both the data Uri and an explicit
5893     * MIME data type.  This method should very rarely be used -- it allows you
5894     * to override the MIME type that would ordinarily be inferred from the
5895     * data with your own type given here.
5896     *
5897     * <p>The data Uri and the MIME type are normalize using
5898     * {@link android.net.Uri#normalizeScheme} and {@link #normalizeMimeType}
5899     * before they are set, so really this is just a convenience method for
5900     * <pre>
5901     * setDataAndType(data.normalize(), Intent.normalizeMimeType(type))
5902     * </pre>
5903     *
5904     * @param data The Uri of the data this intent is now targeting.
5905     * @param type The MIME type of the data being handled by this intent.
5906     *
5907     * @return Returns the same Intent object, for chaining multiple calls
5908     * into a single statement.
5909     *
5910     * @see #setType
5911     * @see #setData
5912     * @see #setDataAndType
5913     * @see #normalizeMimeType
5914     * @see android.net.Uri#normalizeScheme
5915     */
5916    public Intent setDataAndTypeAndNormalize(Uri data, String type) {
5917        return setDataAndType(data.normalizeScheme(), normalizeMimeType(type));
5918    }
5919
5920    /**
5921     * Add a new category to the intent.  Categories provide additional detail
5922     * about the action the intent performs.  When resolving an intent, only
5923     * activities that provide <em>all</em> of the requested categories will be
5924     * used.
5925     *
5926     * @param category The desired category.  This can be either one of the
5927     *               predefined Intent categories, or a custom category in your own
5928     *               namespace.
5929     *
5930     * @return Returns the same Intent object, for chaining multiple calls
5931     * into a single statement.
5932     *
5933     * @see #hasCategory
5934     * @see #removeCategory
5935     */
5936    public Intent addCategory(String category) {
5937        if (mCategories == null) {
5938            mCategories = new ArraySet<String>();
5939        }
5940        mCategories.add(category.intern());
5941        return this;
5942    }
5943
5944    /**
5945     * Remove a category from an intent.
5946     *
5947     * @param category The category to remove.
5948     *
5949     * @see #addCategory
5950     */
5951    public void removeCategory(String category) {
5952        if (mCategories != null) {
5953            mCategories.remove(category);
5954            if (mCategories.size() == 0) {
5955                mCategories = null;
5956            }
5957        }
5958    }
5959
5960    /**
5961     * Set a selector for this Intent.  This is a modification to the kinds of
5962     * things the Intent will match.  If the selector is set, it will be used
5963     * when trying to find entities that can handle the Intent, instead of the
5964     * main contents of the Intent.  This allows you build an Intent containing
5965     * a generic protocol while targeting it more specifically.
5966     *
5967     * <p>An example of where this may be used is with things like
5968     * {@link #CATEGORY_APP_BROWSER}.  This category allows you to build an
5969     * Intent that will launch the Browser application.  However, the correct
5970     * main entry point of an application is actually {@link #ACTION_MAIN}
5971     * {@link #CATEGORY_LAUNCHER} with {@link #setComponent(ComponentName)}
5972     * used to specify the actual Activity to launch.  If you launch the browser
5973     * with something different, undesired behavior may happen if the user has
5974     * previously or later launches it the normal way, since they do not match.
5975     * Instead, you can build an Intent with the MAIN action (but no ComponentName
5976     * yet specified) and set a selector with {@link #ACTION_MAIN} and
5977     * {@link #CATEGORY_APP_BROWSER} to point it specifically to the browser activity.
5978     *
5979     * <p>Setting a selector does not impact the behavior of
5980     * {@link #filterEquals(Intent)} and {@link #filterHashCode()}.  This is part of the
5981     * desired behavior of a selector -- it does not impact the base meaning
5982     * of the Intent, just what kinds of things will be matched against it
5983     * when determining who can handle it.</p>
5984     *
5985     * <p>You can not use both a selector and {@link #setPackage(String)} on
5986     * the same base Intent.</p>
5987     *
5988     * @param selector The desired selector Intent; set to null to not use
5989     * a special selector.
5990     */
5991    public void setSelector(Intent selector) {
5992        if (selector == this) {
5993            throw new IllegalArgumentException(
5994                    "Intent being set as a selector of itself");
5995        }
5996        if (selector != null && mPackage != null) {
5997            throw new IllegalArgumentException(
5998                    "Can't set selector when package name is already set");
5999        }
6000        mSelector = selector;
6001    }
6002
6003    /**
6004     * Set a {@link ClipData} associated with this Intent.  This replaces any
6005     * previously set ClipData.
6006     *
6007     * <p>The ClipData in an intent is not used for Intent matching or other
6008     * such operations.  Semantically it is like extras, used to transmit
6009     * additional data with the Intent.  The main feature of using this over
6010     * the extras for data is that {@link #FLAG_GRANT_READ_URI_PERMISSION}
6011     * and {@link #FLAG_GRANT_WRITE_URI_PERMISSION} will operate on any URI
6012     * items included in the clip data.  This is useful, in particular, if
6013     * you want to transmit an Intent containing multiple <code>content:</code>
6014     * URIs for which the recipient may not have global permission to access the
6015     * content provider.
6016     *
6017     * <p>If the ClipData contains items that are themselves Intents, any
6018     * grant flags in those Intents will be ignored.  Only the top-level flags
6019     * of the main Intent are respected, and will be applied to all Uri or
6020     * Intent items in the clip (or sub-items of the clip).
6021     *
6022     * <p>The MIME type, label, and icon in the ClipData object are not
6023     * directly used by Intent.  Applications should generally rely on the
6024     * MIME type of the Intent itself, not what it may find in the ClipData.
6025     * A common practice is to construct a ClipData for use with an Intent
6026     * with a MIME type of "*&#47;*".
6027     *
6028     * @param clip The new clip to set.  May be null to clear the current clip.
6029     */
6030    public void setClipData(ClipData clip) {
6031        mClipData = clip;
6032    }
6033
6034    /**
6035     * This is NOT a secure mechanism to identify the user who sent the intent.
6036     * When the intent is sent to a different user, it is used to fix uris by adding the userId
6037     * who sent the intent.
6038     * @hide
6039     */
6040    public void setContentUserHint(int contentUserHint) {
6041        mContentUserHint = contentUserHint;
6042    }
6043
6044    /**
6045     * Add extended data to the intent.  The name must include a package
6046     * prefix, for example the app com.android.contacts would use names
6047     * like "com.android.contacts.ShowAll".
6048     *
6049     * @param name The name of the extra data, with package prefix.
6050     * @param value The boolean data value.
6051     *
6052     * @return Returns the same Intent object, for chaining multiple calls
6053     * into a single statement.
6054     *
6055     * @see #putExtras
6056     * @see #removeExtra
6057     * @see #getBooleanExtra(String, boolean)
6058     */
6059    public Intent putExtra(String name, boolean value) {
6060        if (mExtras == null) {
6061            mExtras = new Bundle();
6062        }
6063        mExtras.putBoolean(name, value);
6064        return this;
6065    }
6066
6067    /**
6068     * Add extended data to the intent.  The name must include a package
6069     * prefix, for example the app com.android.contacts would use names
6070     * like "com.android.contacts.ShowAll".
6071     *
6072     * @param name The name of the extra data, with package prefix.
6073     * @param value The byte data value.
6074     *
6075     * @return Returns the same Intent object, for chaining multiple calls
6076     * into a single statement.
6077     *
6078     * @see #putExtras
6079     * @see #removeExtra
6080     * @see #getByteExtra(String, byte)
6081     */
6082    public Intent putExtra(String name, byte value) {
6083        if (mExtras == null) {
6084            mExtras = new Bundle();
6085        }
6086        mExtras.putByte(name, value);
6087        return this;
6088    }
6089
6090    /**
6091     * Add extended data to the intent.  The name must include a package
6092     * prefix, for example the app com.android.contacts would use names
6093     * like "com.android.contacts.ShowAll".
6094     *
6095     * @param name The name of the extra data, with package prefix.
6096     * @param value The char data value.
6097     *
6098     * @return Returns the same Intent object, for chaining multiple calls
6099     * into a single statement.
6100     *
6101     * @see #putExtras
6102     * @see #removeExtra
6103     * @see #getCharExtra(String, char)
6104     */
6105    public Intent putExtra(String name, char value) {
6106        if (mExtras == null) {
6107            mExtras = new Bundle();
6108        }
6109        mExtras.putChar(name, value);
6110        return this;
6111    }
6112
6113    /**
6114     * Add extended data to the intent.  The name must include a package
6115     * prefix, for example the app com.android.contacts would use names
6116     * like "com.android.contacts.ShowAll".
6117     *
6118     * @param name The name of the extra data, with package prefix.
6119     * @param value The short data value.
6120     *
6121     * @return Returns the same Intent object, for chaining multiple calls
6122     * into a single statement.
6123     *
6124     * @see #putExtras
6125     * @see #removeExtra
6126     * @see #getShortExtra(String, short)
6127     */
6128    public Intent putExtra(String name, short value) {
6129        if (mExtras == null) {
6130            mExtras = new Bundle();
6131        }
6132        mExtras.putShort(name, value);
6133        return this;
6134    }
6135
6136    /**
6137     * Add extended data to the intent.  The name must include a package
6138     * prefix, for example the app com.android.contacts would use names
6139     * like "com.android.contacts.ShowAll".
6140     *
6141     * @param name The name of the extra data, with package prefix.
6142     * @param value The integer data value.
6143     *
6144     * @return Returns the same Intent object, for chaining multiple calls
6145     * into a single statement.
6146     *
6147     * @see #putExtras
6148     * @see #removeExtra
6149     * @see #getIntExtra(String, int)
6150     */
6151    public Intent putExtra(String name, int value) {
6152        if (mExtras == null) {
6153            mExtras = new Bundle();
6154        }
6155        mExtras.putInt(name, value);
6156        return this;
6157    }
6158
6159    /**
6160     * Add extended data to the intent.  The name must include a package
6161     * prefix, for example the app com.android.contacts would use names
6162     * like "com.android.contacts.ShowAll".
6163     *
6164     * @param name The name of the extra data, with package prefix.
6165     * @param value The long data value.
6166     *
6167     * @return Returns the same Intent object, for chaining multiple calls
6168     * into a single statement.
6169     *
6170     * @see #putExtras
6171     * @see #removeExtra
6172     * @see #getLongExtra(String, long)
6173     */
6174    public Intent putExtra(String name, long value) {
6175        if (mExtras == null) {
6176            mExtras = new Bundle();
6177        }
6178        mExtras.putLong(name, value);
6179        return this;
6180    }
6181
6182    /**
6183     * Add extended data to the intent.  The name must include a package
6184     * prefix, for example the app com.android.contacts would use names
6185     * like "com.android.contacts.ShowAll".
6186     *
6187     * @param name The name of the extra data, with package prefix.
6188     * @param value The float data value.
6189     *
6190     * @return Returns the same Intent object, for chaining multiple calls
6191     * into a single statement.
6192     *
6193     * @see #putExtras
6194     * @see #removeExtra
6195     * @see #getFloatExtra(String, float)
6196     */
6197    public Intent putExtra(String name, float value) {
6198        if (mExtras == null) {
6199            mExtras = new Bundle();
6200        }
6201        mExtras.putFloat(name, value);
6202        return this;
6203    }
6204
6205    /**
6206     * Add extended data to the intent.  The name must include a package
6207     * prefix, for example the app com.android.contacts would use names
6208     * like "com.android.contacts.ShowAll".
6209     *
6210     * @param name The name of the extra data, with package prefix.
6211     * @param value The double data value.
6212     *
6213     * @return Returns the same Intent object, for chaining multiple calls
6214     * into a single statement.
6215     *
6216     * @see #putExtras
6217     * @see #removeExtra
6218     * @see #getDoubleExtra(String, double)
6219     */
6220    public Intent putExtra(String name, double value) {
6221        if (mExtras == null) {
6222            mExtras = new Bundle();
6223        }
6224        mExtras.putDouble(name, value);
6225        return this;
6226    }
6227
6228    /**
6229     * Add extended data to the intent.  The name must include a package
6230     * prefix, for example the app com.android.contacts would use names
6231     * like "com.android.contacts.ShowAll".
6232     *
6233     * @param name The name of the extra data, with package prefix.
6234     * @param value The String data value.
6235     *
6236     * @return Returns the same Intent object, for chaining multiple calls
6237     * into a single statement.
6238     *
6239     * @see #putExtras
6240     * @see #removeExtra
6241     * @see #getStringExtra(String)
6242     */
6243    public Intent putExtra(String name, String value) {
6244        if (mExtras == null) {
6245            mExtras = new Bundle();
6246        }
6247        mExtras.putString(name, value);
6248        return this;
6249    }
6250
6251    /**
6252     * Add extended data to the intent.  The name must include a package
6253     * prefix, for example the app com.android.contacts would use names
6254     * like "com.android.contacts.ShowAll".
6255     *
6256     * @param name The name of the extra data, with package prefix.
6257     * @param value The CharSequence data value.
6258     *
6259     * @return Returns the same Intent object, for chaining multiple calls
6260     * into a single statement.
6261     *
6262     * @see #putExtras
6263     * @see #removeExtra
6264     * @see #getCharSequenceExtra(String)
6265     */
6266    public Intent putExtra(String name, CharSequence value) {
6267        if (mExtras == null) {
6268            mExtras = new Bundle();
6269        }
6270        mExtras.putCharSequence(name, value);
6271        return this;
6272    }
6273
6274    /**
6275     * Add extended data to the intent.  The name must include a package
6276     * prefix, for example the app com.android.contacts would use names
6277     * like "com.android.contacts.ShowAll".
6278     *
6279     * @param name The name of the extra data, with package prefix.
6280     * @param value The Parcelable data value.
6281     *
6282     * @return Returns the same Intent object, for chaining multiple calls
6283     * into a single statement.
6284     *
6285     * @see #putExtras
6286     * @see #removeExtra
6287     * @see #getParcelableExtra(String)
6288     */
6289    public Intent putExtra(String name, Parcelable value) {
6290        if (mExtras == null) {
6291            mExtras = new Bundle();
6292        }
6293        mExtras.putParcelable(name, value);
6294        return this;
6295    }
6296
6297    /**
6298     * Add extended data to the intent.  The name must include a package
6299     * prefix, for example the app com.android.contacts would use names
6300     * like "com.android.contacts.ShowAll".
6301     *
6302     * @param name The name of the extra data, with package prefix.
6303     * @param value The Parcelable[] data value.
6304     *
6305     * @return Returns the same Intent object, for chaining multiple calls
6306     * into a single statement.
6307     *
6308     * @see #putExtras
6309     * @see #removeExtra
6310     * @see #getParcelableArrayExtra(String)
6311     */
6312    public Intent putExtra(String name, Parcelable[] value) {
6313        if (mExtras == null) {
6314            mExtras = new Bundle();
6315        }
6316        mExtras.putParcelableArray(name, value);
6317        return this;
6318    }
6319
6320    /**
6321     * Add extended data to the intent.  The name must include a package
6322     * prefix, for example the app com.android.contacts would use names
6323     * like "com.android.contacts.ShowAll".
6324     *
6325     * @param name The name of the extra data, with package prefix.
6326     * @param value The ArrayList<Parcelable> data value.
6327     *
6328     * @return Returns the same Intent object, for chaining multiple calls
6329     * into a single statement.
6330     *
6331     * @see #putExtras
6332     * @see #removeExtra
6333     * @see #getParcelableArrayListExtra(String)
6334     */
6335    public Intent putParcelableArrayListExtra(String name, ArrayList<? extends Parcelable> value) {
6336        if (mExtras == null) {
6337            mExtras = new Bundle();
6338        }
6339        mExtras.putParcelableArrayList(name, value);
6340        return this;
6341    }
6342
6343    /**
6344     * Add extended data to the intent.  The name must include a package
6345     * prefix, for example the app com.android.contacts would use names
6346     * like "com.android.contacts.ShowAll".
6347     *
6348     * @param name The name of the extra data, with package prefix.
6349     * @param value The ArrayList<Integer> data value.
6350     *
6351     * @return Returns the same Intent object, for chaining multiple calls
6352     * into a single statement.
6353     *
6354     * @see #putExtras
6355     * @see #removeExtra
6356     * @see #getIntegerArrayListExtra(String)
6357     */
6358    public Intent putIntegerArrayListExtra(String name, ArrayList<Integer> value) {
6359        if (mExtras == null) {
6360            mExtras = new Bundle();
6361        }
6362        mExtras.putIntegerArrayList(name, value);
6363        return this;
6364    }
6365
6366    /**
6367     * Add extended data to the intent.  The name must include a package
6368     * prefix, for example the app com.android.contacts would use names
6369     * like "com.android.contacts.ShowAll".
6370     *
6371     * @param name The name of the extra data, with package prefix.
6372     * @param value The ArrayList<String> data value.
6373     *
6374     * @return Returns the same Intent object, for chaining multiple calls
6375     * into a single statement.
6376     *
6377     * @see #putExtras
6378     * @see #removeExtra
6379     * @see #getStringArrayListExtra(String)
6380     */
6381    public Intent putStringArrayListExtra(String name, ArrayList<String> value) {
6382        if (mExtras == null) {
6383            mExtras = new Bundle();
6384        }
6385        mExtras.putStringArrayList(name, value);
6386        return this;
6387    }
6388
6389    /**
6390     * Add extended data to the intent.  The name must include a package
6391     * prefix, for example the app com.android.contacts would use names
6392     * like "com.android.contacts.ShowAll".
6393     *
6394     * @param name The name of the extra data, with package prefix.
6395     * @param value The ArrayList<CharSequence> data value.
6396     *
6397     * @return Returns the same Intent object, for chaining multiple calls
6398     * into a single statement.
6399     *
6400     * @see #putExtras
6401     * @see #removeExtra
6402     * @see #getCharSequenceArrayListExtra(String)
6403     */
6404    public Intent putCharSequenceArrayListExtra(String name, ArrayList<CharSequence> value) {
6405        if (mExtras == null) {
6406            mExtras = new Bundle();
6407        }
6408        mExtras.putCharSequenceArrayList(name, value);
6409        return this;
6410    }
6411
6412    /**
6413     * Add extended data to the intent.  The name must include a package
6414     * prefix, for example the app com.android.contacts would use names
6415     * like "com.android.contacts.ShowAll".
6416     *
6417     * @param name The name of the extra data, with package prefix.
6418     * @param value The Serializable data value.
6419     *
6420     * @return Returns the same Intent object, for chaining multiple calls
6421     * into a single statement.
6422     *
6423     * @see #putExtras
6424     * @see #removeExtra
6425     * @see #getSerializableExtra(String)
6426     */
6427    public Intent putExtra(String name, Serializable value) {
6428        if (mExtras == null) {
6429            mExtras = new Bundle();
6430        }
6431        mExtras.putSerializable(name, value);
6432        return this;
6433    }
6434
6435    /**
6436     * Add extended data to the intent.  The name must include a package
6437     * prefix, for example the app com.android.contacts would use names
6438     * like "com.android.contacts.ShowAll".
6439     *
6440     * @param name The name of the extra data, with package prefix.
6441     * @param value The boolean array data value.
6442     *
6443     * @return Returns the same Intent object, for chaining multiple calls
6444     * into a single statement.
6445     *
6446     * @see #putExtras
6447     * @see #removeExtra
6448     * @see #getBooleanArrayExtra(String)
6449     */
6450    public Intent putExtra(String name, boolean[] value) {
6451        if (mExtras == null) {
6452            mExtras = new Bundle();
6453        }
6454        mExtras.putBooleanArray(name, value);
6455        return this;
6456    }
6457
6458    /**
6459     * Add extended data to the intent.  The name must include a package
6460     * prefix, for example the app com.android.contacts would use names
6461     * like "com.android.contacts.ShowAll".
6462     *
6463     * @param name The name of the extra data, with package prefix.
6464     * @param value The byte array data value.
6465     *
6466     * @return Returns the same Intent object, for chaining multiple calls
6467     * into a single statement.
6468     *
6469     * @see #putExtras
6470     * @see #removeExtra
6471     * @see #getByteArrayExtra(String)
6472     */
6473    public Intent putExtra(String name, byte[] value) {
6474        if (mExtras == null) {
6475            mExtras = new Bundle();
6476        }
6477        mExtras.putByteArray(name, value);
6478        return this;
6479    }
6480
6481    /**
6482     * Add extended data to the intent.  The name must include a package
6483     * prefix, for example the app com.android.contacts would use names
6484     * like "com.android.contacts.ShowAll".
6485     *
6486     * @param name The name of the extra data, with package prefix.
6487     * @param value The short array data value.
6488     *
6489     * @return Returns the same Intent object, for chaining multiple calls
6490     * into a single statement.
6491     *
6492     * @see #putExtras
6493     * @see #removeExtra
6494     * @see #getShortArrayExtra(String)
6495     */
6496    public Intent putExtra(String name, short[] value) {
6497        if (mExtras == null) {
6498            mExtras = new Bundle();
6499        }
6500        mExtras.putShortArray(name, value);
6501        return this;
6502    }
6503
6504    /**
6505     * Add extended data to the intent.  The name must include a package
6506     * prefix, for example the app com.android.contacts would use names
6507     * like "com.android.contacts.ShowAll".
6508     *
6509     * @param name The name of the extra data, with package prefix.
6510     * @param value The char array data value.
6511     *
6512     * @return Returns the same Intent object, for chaining multiple calls
6513     * into a single statement.
6514     *
6515     * @see #putExtras
6516     * @see #removeExtra
6517     * @see #getCharArrayExtra(String)
6518     */
6519    public Intent putExtra(String name, char[] value) {
6520        if (mExtras == null) {
6521            mExtras = new Bundle();
6522        }
6523        mExtras.putCharArray(name, value);
6524        return this;
6525    }
6526
6527    /**
6528     * Add extended data to the intent.  The name must include a package
6529     * prefix, for example the app com.android.contacts would use names
6530     * like "com.android.contacts.ShowAll".
6531     *
6532     * @param name The name of the extra data, with package prefix.
6533     * @param value The int array data value.
6534     *
6535     * @return Returns the same Intent object, for chaining multiple calls
6536     * into a single statement.
6537     *
6538     * @see #putExtras
6539     * @see #removeExtra
6540     * @see #getIntArrayExtra(String)
6541     */
6542    public Intent putExtra(String name, int[] value) {
6543        if (mExtras == null) {
6544            mExtras = new Bundle();
6545        }
6546        mExtras.putIntArray(name, value);
6547        return this;
6548    }
6549
6550    /**
6551     * Add extended data to the intent.  The name must include a package
6552     * prefix, for example the app com.android.contacts would use names
6553     * like "com.android.contacts.ShowAll".
6554     *
6555     * @param name The name of the extra data, with package prefix.
6556     * @param value The byte array data value.
6557     *
6558     * @return Returns the same Intent object, for chaining multiple calls
6559     * into a single statement.
6560     *
6561     * @see #putExtras
6562     * @see #removeExtra
6563     * @see #getLongArrayExtra(String)
6564     */
6565    public Intent putExtra(String name, long[] value) {
6566        if (mExtras == null) {
6567            mExtras = new Bundle();
6568        }
6569        mExtras.putLongArray(name, value);
6570        return this;
6571    }
6572
6573    /**
6574     * Add extended data to the intent.  The name must include a package
6575     * prefix, for example the app com.android.contacts would use names
6576     * like "com.android.contacts.ShowAll".
6577     *
6578     * @param name The name of the extra data, with package prefix.
6579     * @param value The float array data value.
6580     *
6581     * @return Returns the same Intent object, for chaining multiple calls
6582     * into a single statement.
6583     *
6584     * @see #putExtras
6585     * @see #removeExtra
6586     * @see #getFloatArrayExtra(String)
6587     */
6588    public Intent putExtra(String name, float[] value) {
6589        if (mExtras == null) {
6590            mExtras = new Bundle();
6591        }
6592        mExtras.putFloatArray(name, value);
6593        return this;
6594    }
6595
6596    /**
6597     * Add extended data to the intent.  The name must include a package
6598     * prefix, for example the app com.android.contacts would use names
6599     * like "com.android.contacts.ShowAll".
6600     *
6601     * @param name The name of the extra data, with package prefix.
6602     * @param value The double array data value.
6603     *
6604     * @return Returns the same Intent object, for chaining multiple calls
6605     * into a single statement.
6606     *
6607     * @see #putExtras
6608     * @see #removeExtra
6609     * @see #getDoubleArrayExtra(String)
6610     */
6611    public Intent putExtra(String name, double[] value) {
6612        if (mExtras == null) {
6613            mExtras = new Bundle();
6614        }
6615        mExtras.putDoubleArray(name, value);
6616        return this;
6617    }
6618
6619    /**
6620     * Add extended data to the intent.  The name must include a package
6621     * prefix, for example the app com.android.contacts would use names
6622     * like "com.android.contacts.ShowAll".
6623     *
6624     * @param name The name of the extra data, with package prefix.
6625     * @param value The String array data value.
6626     *
6627     * @return Returns the same Intent object, for chaining multiple calls
6628     * into a single statement.
6629     *
6630     * @see #putExtras
6631     * @see #removeExtra
6632     * @see #getStringArrayExtra(String)
6633     */
6634    public Intent putExtra(String name, String[] value) {
6635        if (mExtras == null) {
6636            mExtras = new Bundle();
6637        }
6638        mExtras.putStringArray(name, value);
6639        return this;
6640    }
6641
6642    /**
6643     * Add extended data to the intent.  The name must include a package
6644     * prefix, for example the app com.android.contacts would use names
6645     * like "com.android.contacts.ShowAll".
6646     *
6647     * @param name The name of the extra data, with package prefix.
6648     * @param value The CharSequence array data value.
6649     *
6650     * @return Returns the same Intent object, for chaining multiple calls
6651     * into a single statement.
6652     *
6653     * @see #putExtras
6654     * @see #removeExtra
6655     * @see #getCharSequenceArrayExtra(String)
6656     */
6657    public Intent putExtra(String name, CharSequence[] value) {
6658        if (mExtras == null) {
6659            mExtras = new Bundle();
6660        }
6661        mExtras.putCharSequenceArray(name, value);
6662        return this;
6663    }
6664
6665    /**
6666     * Add extended data to the intent.  The name must include a package
6667     * prefix, for example the app com.android.contacts would use names
6668     * like "com.android.contacts.ShowAll".
6669     *
6670     * @param name The name of the extra data, with package prefix.
6671     * @param value The Bundle data value.
6672     *
6673     * @return Returns the same Intent object, for chaining multiple calls
6674     * into a single statement.
6675     *
6676     * @see #putExtras
6677     * @see #removeExtra
6678     * @see #getBundleExtra(String)
6679     */
6680    public Intent putExtra(String name, Bundle value) {
6681        if (mExtras == null) {
6682            mExtras = new Bundle();
6683        }
6684        mExtras.putBundle(name, value);
6685        return this;
6686    }
6687
6688    /**
6689     * Add extended data to the intent.  The name must include a package
6690     * prefix, for example the app com.android.contacts would use names
6691     * like "com.android.contacts.ShowAll".
6692     *
6693     * @param name The name of the extra data, with package prefix.
6694     * @param value The IBinder data value.
6695     *
6696     * @return Returns the same Intent object, for chaining multiple calls
6697     * into a single statement.
6698     *
6699     * @see #putExtras
6700     * @see #removeExtra
6701     * @see #getIBinderExtra(String)
6702     *
6703     * @deprecated
6704     * @hide
6705     */
6706    @Deprecated
6707    public Intent putExtra(String name, IBinder value) {
6708        if (mExtras == null) {
6709            mExtras = new Bundle();
6710        }
6711        mExtras.putIBinder(name, value);
6712        return this;
6713    }
6714
6715    /**
6716     * Copy all extras in 'src' in to this intent.
6717     *
6718     * @param src Contains the extras to copy.
6719     *
6720     * @see #putExtra
6721     */
6722    public Intent putExtras(Intent src) {
6723        if (src.mExtras != null) {
6724            if (mExtras == null) {
6725                mExtras = new Bundle(src.mExtras);
6726            } else {
6727                mExtras.putAll(src.mExtras);
6728            }
6729        }
6730        return this;
6731    }
6732
6733    /**
6734     * Add a set of extended data to the intent.  The keys must include a package
6735     * prefix, for example the app com.android.contacts would use names
6736     * like "com.android.contacts.ShowAll".
6737     *
6738     * @param extras The Bundle of extras to add to this intent.
6739     *
6740     * @see #putExtra
6741     * @see #removeExtra
6742     */
6743    public Intent putExtras(Bundle extras) {
6744        if (mExtras == null) {
6745            mExtras = new Bundle();
6746        }
6747        mExtras.putAll(extras);
6748        return this;
6749    }
6750
6751    /**
6752     * Completely replace the extras in the Intent with the extras in the
6753     * given Intent.
6754     *
6755     * @param src The exact extras contained in this Intent are copied
6756     * into the target intent, replacing any that were previously there.
6757     */
6758    public Intent replaceExtras(Intent src) {
6759        mExtras = src.mExtras != null ? new Bundle(src.mExtras) : null;
6760        return this;
6761    }
6762
6763    /**
6764     * Completely replace the extras in the Intent with the given Bundle of
6765     * extras.
6766     *
6767     * @param extras The new set of extras in the Intent, or null to erase
6768     * all extras.
6769     */
6770    public Intent replaceExtras(Bundle extras) {
6771        mExtras = extras != null ? new Bundle(extras) : null;
6772        return this;
6773    }
6774
6775    /**
6776     * Remove extended data from the intent.
6777     *
6778     * @see #putExtra
6779     */
6780    public void removeExtra(String name) {
6781        if (mExtras != null) {
6782            mExtras.remove(name);
6783            if (mExtras.size() == 0) {
6784                mExtras = null;
6785            }
6786        }
6787    }
6788
6789    /**
6790     * Set special flags controlling how this intent is handled.  Most values
6791     * here depend on the type of component being executed by the Intent,
6792     * specifically the FLAG_ACTIVITY_* flags are all for use with
6793     * {@link Context#startActivity Context.startActivity()} and the
6794     * FLAG_RECEIVER_* flags are all for use with
6795     * {@link Context#sendBroadcast(Intent) Context.sendBroadcast()}.
6796     *
6797     * <p>See the
6798     * <a href="{@docRoot}guide/topics/fundamentals/tasks-and-back-stack.html">Tasks and Back
6799     * Stack</a> documentation for important information on how some of these options impact
6800     * the behavior of your application.
6801     *
6802     * @param flags The desired flags.
6803     *
6804     * @return Returns the same Intent object, for chaining multiple calls
6805     * into a single statement.
6806     *
6807     * @see #getFlags
6808     * @see #addFlags
6809     *
6810     * @see #FLAG_GRANT_READ_URI_PERMISSION
6811     * @see #FLAG_GRANT_WRITE_URI_PERMISSION
6812     * @see #FLAG_GRANT_PERSISTABLE_URI_PERMISSION
6813     * @see #FLAG_GRANT_PREFIX_URI_PERMISSION
6814     * @see #FLAG_DEBUG_LOG_RESOLUTION
6815     * @see #FLAG_FROM_BACKGROUND
6816     * @see #FLAG_ACTIVITY_BROUGHT_TO_FRONT
6817     * @see #FLAG_ACTIVITY_CLEAR_TASK
6818     * @see #FLAG_ACTIVITY_CLEAR_TOP
6819     * @see #FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET
6820     * @see #FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS
6821     * @see #FLAG_ACTIVITY_FORWARD_RESULT
6822     * @see #FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY
6823     * @see #FLAG_ACTIVITY_MULTIPLE_TASK
6824     * @see #FLAG_ACTIVITY_NEW_DOCUMENT
6825     * @see #FLAG_ACTIVITY_NEW_TASK
6826     * @see #FLAG_ACTIVITY_NO_ANIMATION
6827     * @see #FLAG_ACTIVITY_NO_HISTORY
6828     * @see #FLAG_ACTIVITY_NO_USER_ACTION
6829     * @see #FLAG_ACTIVITY_PREVIOUS_IS_TOP
6830     * @see #FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
6831     * @see #FLAG_ACTIVITY_REORDER_TO_FRONT
6832     * @see #FLAG_ACTIVITY_SINGLE_TOP
6833     * @see #FLAG_ACTIVITY_TASK_ON_HOME
6834     * @see #FLAG_RECEIVER_REGISTERED_ONLY
6835     */
6836    public Intent setFlags(int flags) {
6837        mFlags = flags;
6838        return this;
6839    }
6840
6841    /**
6842     * Add additional flags to the intent (or with existing flags
6843     * value).
6844     *
6845     * @param flags The new flags to set.
6846     *
6847     * @return Returns the same Intent object, for chaining multiple calls
6848     * into a single statement.
6849     *
6850     * @see #setFlags
6851     */
6852    public Intent addFlags(int flags) {
6853        mFlags |= flags;
6854        return this;
6855    }
6856
6857    /**
6858     * (Usually optional) Set an explicit application package name that limits
6859     * the components this Intent will resolve to.  If left to the default
6860     * value of null, all components in all applications will considered.
6861     * If non-null, the Intent can only match the components in the given
6862     * application package.
6863     *
6864     * @param packageName The name of the application package to handle the
6865     * intent, or null to allow any application package.
6866     *
6867     * @return Returns the same Intent object, for chaining multiple calls
6868     * into a single statement.
6869     *
6870     * @see #getPackage
6871     * @see #resolveActivity
6872     */
6873    public Intent setPackage(String packageName) {
6874        if (packageName != null && mSelector != null) {
6875            throw new IllegalArgumentException(
6876                    "Can't set package name when selector is already set");
6877        }
6878        mPackage = packageName;
6879        return this;
6880    }
6881
6882    /**
6883     * (Usually optional) Explicitly set the component to handle the intent.
6884     * If left with the default value of null, the system will determine the
6885     * appropriate class to use based on the other fields (action, data,
6886     * type, categories) in the Intent.  If this class is defined, the
6887     * specified class will always be used regardless of the other fields.  You
6888     * should only set this value when you know you absolutely want a specific
6889     * class to be used; otherwise it is better to let the system find the
6890     * appropriate class so that you will respect the installed applications
6891     * and user preferences.
6892     *
6893     * @param component The name of the application component to handle the
6894     * intent, or null to let the system find one for you.
6895     *
6896     * @return Returns the same Intent object, for chaining multiple calls
6897     * into a single statement.
6898     *
6899     * @see #setClass
6900     * @see #setClassName(Context, String)
6901     * @see #setClassName(String, String)
6902     * @see #getComponent
6903     * @see #resolveActivity
6904     */
6905    public Intent setComponent(ComponentName component) {
6906        mComponent = component;
6907        return this;
6908    }
6909
6910    /**
6911     * Convenience for calling {@link #setComponent} with an
6912     * explicit class name.
6913     *
6914     * @param packageContext A Context of the application package implementing
6915     * this class.
6916     * @param className The name of a class inside of the application package
6917     * that will be used as the component for this Intent.
6918     *
6919     * @return Returns the same Intent object, for chaining multiple calls
6920     * into a single statement.
6921     *
6922     * @see #setComponent
6923     * @see #setClass
6924     */
6925    public Intent setClassName(Context packageContext, String className) {
6926        mComponent = new ComponentName(packageContext, className);
6927        return this;
6928    }
6929
6930    /**
6931     * Convenience for calling {@link #setComponent} with an
6932     * explicit application package name and class name.
6933     *
6934     * @param packageName The name of the package implementing the desired
6935     * component.
6936     * @param className The name of a class inside of the application package
6937     * that will be used as the component for this Intent.
6938     *
6939     * @return Returns the same Intent object, for chaining multiple calls
6940     * into a single statement.
6941     *
6942     * @see #setComponent
6943     * @see #setClass
6944     */
6945    public Intent setClassName(String packageName, String className) {
6946        mComponent = new ComponentName(packageName, className);
6947        return this;
6948    }
6949
6950    /**
6951     * Convenience for calling {@link #setComponent(ComponentName)} with the
6952     * name returned by a {@link Class} object.
6953     *
6954     * @param packageContext A Context of the application package implementing
6955     * this class.
6956     * @param cls The class name to set, equivalent to
6957     *            <code>setClassName(context, cls.getName())</code>.
6958     *
6959     * @return Returns the same Intent object, for chaining multiple calls
6960     * into a single statement.
6961     *
6962     * @see #setComponent
6963     */
6964    public Intent setClass(Context packageContext, Class<?> cls) {
6965        mComponent = new ComponentName(packageContext, cls);
6966        return this;
6967    }
6968
6969    /**
6970     * Set the bounds of the sender of this intent, in screen coordinates.  This can be
6971     * used as a hint to the receiver for animations and the like.  Null means that there
6972     * is no source bounds.
6973     */
6974    public void setSourceBounds(Rect r) {
6975        if (r != null) {
6976            mSourceBounds = new Rect(r);
6977        } else {
6978            mSourceBounds = null;
6979        }
6980    }
6981
6982    /** @hide */
6983    @IntDef(flag = true,
6984            value = {
6985                    FILL_IN_ACTION,
6986                    FILL_IN_DATA,
6987                    FILL_IN_CATEGORIES,
6988                    FILL_IN_COMPONENT,
6989                    FILL_IN_PACKAGE,
6990                    FILL_IN_SOURCE_BOUNDS,
6991                    FILL_IN_SELECTOR,
6992                    FILL_IN_CLIP_DATA
6993            })
6994    @Retention(RetentionPolicy.SOURCE)
6995    public @interface FillInFlags {}
6996
6997    /**
6998     * Use with {@link #fillIn} to allow the current action value to be
6999     * overwritten, even if it is already set.
7000     */
7001    public static final int FILL_IN_ACTION = 1<<0;
7002
7003    /**
7004     * Use with {@link #fillIn} to allow the current data or type value
7005     * overwritten, even if it is already set.
7006     */
7007    public static final int FILL_IN_DATA = 1<<1;
7008
7009    /**
7010     * Use with {@link #fillIn} to allow the current categories to be
7011     * overwritten, even if they are already set.
7012     */
7013    public static final int FILL_IN_CATEGORIES = 1<<2;
7014
7015    /**
7016     * Use with {@link #fillIn} to allow the current component value to be
7017     * overwritten, even if it is already set.
7018     */
7019    public static final int FILL_IN_COMPONENT = 1<<3;
7020
7021    /**
7022     * Use with {@link #fillIn} to allow the current package value to be
7023     * overwritten, even if it is already set.
7024     */
7025    public static final int FILL_IN_PACKAGE = 1<<4;
7026
7027    /**
7028     * Use with {@link #fillIn} to allow the current bounds rectangle to be
7029     * overwritten, even if it is already set.
7030     */
7031    public static final int FILL_IN_SOURCE_BOUNDS = 1<<5;
7032
7033    /**
7034     * Use with {@link #fillIn} to allow the current selector to be
7035     * overwritten, even if it is already set.
7036     */
7037    public static final int FILL_IN_SELECTOR = 1<<6;
7038
7039    /**
7040     * Use with {@link #fillIn} to allow the current ClipData to be
7041     * overwritten, even if it is already set.
7042     */
7043    public static final int FILL_IN_CLIP_DATA = 1<<7;
7044
7045    /**
7046     * Copy the contents of <var>other</var> in to this object, but only
7047     * where fields are not defined by this object.  For purposes of a field
7048     * being defined, the following pieces of data in the Intent are
7049     * considered to be separate fields:
7050     *
7051     * <ul>
7052     * <li> action, as set by {@link #setAction}.
7053     * <li> data Uri and MIME type, as set by {@link #setData(Uri)},
7054     * {@link #setType(String)}, or {@link #setDataAndType(Uri, String)}.
7055     * <li> categories, as set by {@link #addCategory}.
7056     * <li> package, as set by {@link #setPackage}.
7057     * <li> component, as set by {@link #setComponent(ComponentName)} or
7058     * related methods.
7059     * <li> source bounds, as set by {@link #setSourceBounds}.
7060     * <li> selector, as set by {@link #setSelector(Intent)}.
7061     * <li> clip data, as set by {@link #setClipData(ClipData)}.
7062     * <li> each top-level name in the associated extras.
7063     * </ul>
7064     *
7065     * <p>In addition, you can use the {@link #FILL_IN_ACTION},
7066     * {@link #FILL_IN_DATA}, {@link #FILL_IN_CATEGORIES}, {@link #FILL_IN_PACKAGE},
7067     * {@link #FILL_IN_COMPONENT}, {@link #FILL_IN_SOURCE_BOUNDS},
7068     * {@link #FILL_IN_SELECTOR}, and {@link #FILL_IN_CLIP_DATA} to override
7069     * the restriction where the corresponding field will not be replaced if
7070     * it is already set.
7071     *
7072     * <p>Note: The component field will only be copied if {@link #FILL_IN_COMPONENT}
7073     * is explicitly specified.  The selector will only be copied if
7074     * {@link #FILL_IN_SELECTOR} is explicitly specified.
7075     *
7076     * <p>For example, consider Intent A with {data="foo", categories="bar"}
7077     * and Intent B with {action="gotit", data-type="some/thing",
7078     * categories="one","two"}.
7079     *
7080     * <p>Calling A.fillIn(B, Intent.FILL_IN_DATA) will result in A now
7081     * containing: {action="gotit", data-type="some/thing",
7082     * categories="bar"}.
7083     *
7084     * @param other Another Intent whose values are to be used to fill in
7085     * the current one.
7086     * @param flags Options to control which fields can be filled in.
7087     *
7088     * @return Returns a bit mask of {@link #FILL_IN_ACTION},
7089     * {@link #FILL_IN_DATA}, {@link #FILL_IN_CATEGORIES}, {@link #FILL_IN_PACKAGE},
7090     * {@link #FILL_IN_COMPONENT}, {@link #FILL_IN_SOURCE_BOUNDS},
7091     * {@link #FILL_IN_SELECTOR} and {@link #FILL_IN_CLIP_DATA indicating which fields were
7092     * changed.
7093     */
7094    @FillInFlags
7095    public int fillIn(Intent other, @FillInFlags int flags) {
7096        int changes = 0;
7097        boolean mayHaveCopiedUris = false;
7098        if (other.mAction != null
7099                && (mAction == null || (flags&FILL_IN_ACTION) != 0)) {
7100            mAction = other.mAction;
7101            changes |= FILL_IN_ACTION;
7102        }
7103        if ((other.mData != null || other.mType != null)
7104                && ((mData == null && mType == null)
7105                        || (flags&FILL_IN_DATA) != 0)) {
7106            mData = other.mData;
7107            mType = other.mType;
7108            changes |= FILL_IN_DATA;
7109            mayHaveCopiedUris = true;
7110        }
7111        if (other.mCategories != null
7112                && (mCategories == null || (flags&FILL_IN_CATEGORIES) != 0)) {
7113            if (other.mCategories != null) {
7114                mCategories = new ArraySet<String>(other.mCategories);
7115            }
7116            changes |= FILL_IN_CATEGORIES;
7117        }
7118        if (other.mPackage != null
7119                && (mPackage == null || (flags&FILL_IN_PACKAGE) != 0)) {
7120            // Only do this if mSelector is not set.
7121            if (mSelector == null) {
7122                mPackage = other.mPackage;
7123                changes |= FILL_IN_PACKAGE;
7124            }
7125        }
7126        // Selector is special: it can only be set if explicitly allowed,
7127        // for the same reason as the component name.
7128        if (other.mSelector != null && (flags&FILL_IN_SELECTOR) != 0) {
7129            if (mPackage == null) {
7130                mSelector = new Intent(other.mSelector);
7131                mPackage = null;
7132                changes |= FILL_IN_SELECTOR;
7133            }
7134        }
7135        if (other.mClipData != null
7136                && (mClipData == null || (flags&FILL_IN_CLIP_DATA) != 0)) {
7137            mClipData = other.mClipData;
7138            changes |= FILL_IN_CLIP_DATA;
7139            mayHaveCopiedUris = true;
7140        }
7141        // Component is special: it can -only- be set if explicitly allowed,
7142        // since otherwise the sender could force the intent somewhere the
7143        // originator didn't intend.
7144        if (other.mComponent != null && (flags&FILL_IN_COMPONENT) != 0) {
7145            mComponent = other.mComponent;
7146            changes |= FILL_IN_COMPONENT;
7147        }
7148        mFlags |= other.mFlags;
7149        if (other.mSourceBounds != null
7150                && (mSourceBounds == null || (flags&FILL_IN_SOURCE_BOUNDS) != 0)) {
7151            mSourceBounds = new Rect(other.mSourceBounds);
7152            changes |= FILL_IN_SOURCE_BOUNDS;
7153        }
7154        if (mExtras == null) {
7155            if (other.mExtras != null) {
7156                mExtras = new Bundle(other.mExtras);
7157                mayHaveCopiedUris = true;
7158            }
7159        } else if (other.mExtras != null) {
7160            try {
7161                Bundle newb = new Bundle(other.mExtras);
7162                newb.putAll(mExtras);
7163                mExtras = newb;
7164                mayHaveCopiedUris = true;
7165            } catch (RuntimeException e) {
7166                // Modifying the extras can cause us to unparcel the contents
7167                // of the bundle, and if we do this in the system process that
7168                // may fail.  We really should handle this (i.e., the Bundle
7169                // impl shouldn't be on top of a plain map), but for now just
7170                // ignore it and keep the original contents. :(
7171                Log.w("Intent", "Failure filling in extras", e);
7172            }
7173        }
7174        if (mayHaveCopiedUris && mContentUserHint == UserHandle.USER_CURRENT
7175                && other.mContentUserHint != UserHandle.USER_CURRENT) {
7176            mContentUserHint = other.mContentUserHint;
7177        }
7178        return changes;
7179    }
7180
7181    /**
7182     * Wrapper class holding an Intent and implementing comparisons on it for
7183     * the purpose of filtering.  The class implements its
7184     * {@link #equals equals()} and {@link #hashCode hashCode()} methods as
7185     * simple calls to {@link Intent#filterEquals(Intent)}  filterEquals()} and
7186     * {@link android.content.Intent#filterHashCode()}  filterHashCode()}
7187     * on the wrapped Intent.
7188     */
7189    public static final class FilterComparison {
7190        private final Intent mIntent;
7191        private final int mHashCode;
7192
7193        public FilterComparison(Intent intent) {
7194            mIntent = intent;
7195            mHashCode = intent.filterHashCode();
7196        }
7197
7198        /**
7199         * Return the Intent that this FilterComparison represents.
7200         * @return Returns the Intent held by the FilterComparison.  Do
7201         * not modify!
7202         */
7203        public Intent getIntent() {
7204            return mIntent;
7205        }
7206
7207        @Override
7208        public boolean equals(Object obj) {
7209            if (obj instanceof FilterComparison) {
7210                Intent other = ((FilterComparison)obj).mIntent;
7211                return mIntent.filterEquals(other);
7212            }
7213            return false;
7214        }
7215
7216        @Override
7217        public int hashCode() {
7218            return mHashCode;
7219        }
7220    }
7221
7222    /**
7223     * Determine if two intents are the same for the purposes of intent
7224     * resolution (filtering). That is, if their action, data, type,
7225     * class, and categories are the same.  This does <em>not</em> compare
7226     * any extra data included in the intents.
7227     *
7228     * @param other The other Intent to compare against.
7229     *
7230     * @return Returns true if action, data, type, class, and categories
7231     *         are the same.
7232     */
7233    public boolean filterEquals(Intent other) {
7234        if (other == null) {
7235            return false;
7236        }
7237        if (!Objects.equals(this.mAction, other.mAction)) return false;
7238        if (!Objects.equals(this.mData, other.mData)) return false;
7239        if (!Objects.equals(this.mType, other.mType)) return false;
7240        if (!Objects.equals(this.mPackage, other.mPackage)) return false;
7241        if (!Objects.equals(this.mComponent, other.mComponent)) return false;
7242        if (!Objects.equals(this.mCategories, other.mCategories)) return false;
7243
7244        return true;
7245    }
7246
7247    /**
7248     * Generate hash code that matches semantics of filterEquals().
7249     *
7250     * @return Returns the hash value of the action, data, type, class, and
7251     *         categories.
7252     *
7253     * @see #filterEquals
7254     */
7255    public int filterHashCode() {
7256        int code = 0;
7257        if (mAction != null) {
7258            code += mAction.hashCode();
7259        }
7260        if (mData != null) {
7261            code += mData.hashCode();
7262        }
7263        if (mType != null) {
7264            code += mType.hashCode();
7265        }
7266        if (mPackage != null) {
7267            code += mPackage.hashCode();
7268        }
7269        if (mComponent != null) {
7270            code += mComponent.hashCode();
7271        }
7272        if (mCategories != null) {
7273            code += mCategories.hashCode();
7274        }
7275        return code;
7276    }
7277
7278    @Override
7279    public String toString() {
7280        StringBuilder b = new StringBuilder(128);
7281
7282        b.append("Intent { ");
7283        toShortString(b, true, true, true, false);
7284        b.append(" }");
7285
7286        return b.toString();
7287    }
7288
7289    /** @hide */
7290    public String toInsecureString() {
7291        StringBuilder b = new StringBuilder(128);
7292
7293        b.append("Intent { ");
7294        toShortString(b, false, true, true, false);
7295        b.append(" }");
7296
7297        return b.toString();
7298    }
7299
7300    /** @hide */
7301    public String toInsecureStringWithClip() {
7302        StringBuilder b = new StringBuilder(128);
7303
7304        b.append("Intent { ");
7305        toShortString(b, false, true, true, true);
7306        b.append(" }");
7307
7308        return b.toString();
7309    }
7310
7311    /** @hide */
7312    public String toShortString(boolean secure, boolean comp, boolean extras, boolean clip) {
7313        StringBuilder b = new StringBuilder(128);
7314        toShortString(b, secure, comp, extras, clip);
7315        return b.toString();
7316    }
7317
7318    /** @hide */
7319    public void toShortString(StringBuilder b, boolean secure, boolean comp, boolean extras,
7320            boolean clip) {
7321        boolean first = true;
7322        if (mAction != null) {
7323            b.append("act=").append(mAction);
7324            first = false;
7325        }
7326        if (mCategories != null) {
7327            if (!first) {
7328                b.append(' ');
7329            }
7330            first = false;
7331            b.append("cat=[");
7332            for (int i=0; i<mCategories.size(); i++) {
7333                if (i > 0) b.append(',');
7334                b.append(mCategories.valueAt(i));
7335            }
7336            b.append("]");
7337        }
7338        if (mData != null) {
7339            if (!first) {
7340                b.append(' ');
7341            }
7342            first = false;
7343            b.append("dat=");
7344            if (secure) {
7345                b.append(mData.toSafeString());
7346            } else {
7347                b.append(mData);
7348            }
7349        }
7350        if (mType != null) {
7351            if (!first) {
7352                b.append(' ');
7353            }
7354            first = false;
7355            b.append("typ=").append(mType);
7356        }
7357        if (mFlags != 0) {
7358            if (!first) {
7359                b.append(' ');
7360            }
7361            first = false;
7362            b.append("flg=0x").append(Integer.toHexString(mFlags));
7363        }
7364        if (mPackage != null) {
7365            if (!first) {
7366                b.append(' ');
7367            }
7368            first = false;
7369            b.append("pkg=").append(mPackage);
7370        }
7371        if (comp && mComponent != null) {
7372            if (!first) {
7373                b.append(' ');
7374            }
7375            first = false;
7376            b.append("cmp=").append(mComponent.flattenToShortString());
7377        }
7378        if (mSourceBounds != null) {
7379            if (!first) {
7380                b.append(' ');
7381            }
7382            first = false;
7383            b.append("bnds=").append(mSourceBounds.toShortString());
7384        }
7385        if (mClipData != null) {
7386            if (!first) {
7387                b.append(' ');
7388            }
7389            first = false;
7390            if (clip) {
7391                b.append("clip={");
7392                mClipData.toShortString(b);
7393                b.append('}');
7394            } else {
7395                b.append("(has clip)");
7396            }
7397        }
7398        if (extras && mExtras != null) {
7399            if (!first) {
7400                b.append(' ');
7401            }
7402            first = false;
7403            b.append("(has extras)");
7404        }
7405        if (mContentUserHint != UserHandle.USER_CURRENT) {
7406            if (!first) {
7407                b.append(' ');
7408            }
7409            first = false;
7410            b.append("u=").append(mContentUserHint);
7411        }
7412        if (mSelector != null) {
7413            b.append(" sel=");
7414            mSelector.toShortString(b, secure, comp, extras, clip);
7415            b.append("}");
7416        }
7417    }
7418
7419    /**
7420     * Call {@link #toUri} with 0 flags.
7421     * @deprecated Use {@link #toUri} instead.
7422     */
7423    @Deprecated
7424    public String toURI() {
7425        return toUri(0);
7426    }
7427
7428    /**
7429     * Convert this Intent into a String holding a URI representation of it.
7430     * The returned URI string has been properly URI encoded, so it can be
7431     * used with {@link Uri#parse Uri.parse(String)}.  The URI contains the
7432     * Intent's data as the base URI, with an additional fragment describing
7433     * the action, categories, type, flags, package, component, and extras.
7434     *
7435     * <p>You can convert the returned string back to an Intent with
7436     * {@link #getIntent}.
7437     *
7438     * @param flags Additional operating flags.  Either 0,
7439     * {@link #URI_INTENT_SCHEME}, or {@link #URI_ANDROID_APP_SCHEME}.
7440     *
7441     * @return Returns a URI encoding URI string describing the entire contents
7442     * of the Intent.
7443     */
7444    public String toUri(int flags) {
7445        StringBuilder uri = new StringBuilder(128);
7446        if ((flags&URI_ANDROID_APP_SCHEME) != 0) {
7447            if (mPackage == null) {
7448                throw new IllegalArgumentException(
7449                        "Intent must include an explicit package name to build an android-app: "
7450                        + this);
7451            }
7452            uri.append("android-app://");
7453            uri.append(mPackage);
7454            String scheme = null;
7455            if (mData != null) {
7456                scheme = mData.getScheme();
7457                if (scheme != null) {
7458                    uri.append('/');
7459                    uri.append(scheme);
7460                    String authority = mData.getEncodedAuthority();
7461                    if (authority != null) {
7462                        uri.append('/');
7463                        uri.append(authority);
7464                        String path = mData.getEncodedPath();
7465                        if (path != null) {
7466                            uri.append(path);
7467                        }
7468                        String queryParams = mData.getEncodedQuery();
7469                        if (queryParams != null) {
7470                            uri.append('?');
7471                            uri.append(queryParams);
7472                        }
7473                        String fragment = mData.getEncodedFragment();
7474                        if (fragment != null) {
7475                            uri.append('#');
7476                            uri.append(fragment);
7477                        }
7478                    }
7479                }
7480            }
7481            toUriFragment(uri, null, scheme == null ? Intent.ACTION_MAIN : Intent.ACTION_VIEW,
7482                    mPackage, flags);
7483            return uri.toString();
7484        }
7485        String scheme = null;
7486        if (mData != null) {
7487            String data = mData.toString();
7488            if ((flags&URI_INTENT_SCHEME) != 0) {
7489                final int N = data.length();
7490                for (int i=0; i<N; i++) {
7491                    char c = data.charAt(i);
7492                    if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')
7493                            || c == '.' || c == '-') {
7494                        continue;
7495                    }
7496                    if (c == ':' && i > 0) {
7497                        // Valid scheme.
7498                        scheme = data.substring(0, i);
7499                        uri.append("intent:");
7500                        data = data.substring(i+1);
7501                        break;
7502                    }
7503
7504                    // No scheme.
7505                    break;
7506                }
7507            }
7508            uri.append(data);
7509
7510        } else if ((flags&URI_INTENT_SCHEME) != 0) {
7511            uri.append("intent:");
7512        }
7513
7514        toUriFragment(uri, scheme, Intent.ACTION_VIEW, null, flags);
7515
7516        return uri.toString();
7517    }
7518
7519    private void toUriFragment(StringBuilder uri, String scheme, String defAction,
7520            String defPackage, int flags) {
7521        StringBuilder frag = new StringBuilder(128);
7522
7523        toUriInner(frag, scheme, defAction, defPackage, flags);
7524        if (mSelector != null) {
7525            frag.append("SEL;");
7526            // Note that for now we are not going to try to handle the
7527            // data part; not clear how to represent this as a URI, and
7528            // not much utility in it.
7529            mSelector.toUriInner(frag, mSelector.mData != null ? mSelector.mData.getScheme() : null,
7530                    null, null, flags);
7531        }
7532
7533        if (frag.length() > 0) {
7534            uri.append("#Intent;");
7535            uri.append(frag);
7536            uri.append("end");
7537        }
7538    }
7539
7540    private void toUriInner(StringBuilder uri, String scheme, String defAction,
7541            String defPackage, int flags) {
7542        if (scheme != null) {
7543            uri.append("scheme=").append(scheme).append(';');
7544        }
7545        if (mAction != null && !mAction.equals(defAction)) {
7546            uri.append("action=").append(Uri.encode(mAction)).append(';');
7547        }
7548        if (mCategories != null) {
7549            for (int i=0; i<mCategories.size(); i++) {
7550                uri.append("category=").append(Uri.encode(mCategories.valueAt(i))).append(';');
7551            }
7552        }
7553        if (mType != null) {
7554            uri.append("type=").append(Uri.encode(mType, "/")).append(';');
7555        }
7556        if (mFlags != 0) {
7557            uri.append("launchFlags=0x").append(Integer.toHexString(mFlags)).append(';');
7558        }
7559        if (mPackage != null && !mPackage.equals(defPackage)) {
7560            uri.append("package=").append(Uri.encode(mPackage)).append(';');
7561        }
7562        if (mComponent != null) {
7563            uri.append("component=").append(Uri.encode(
7564                    mComponent.flattenToShortString(), "/")).append(';');
7565        }
7566        if (mSourceBounds != null) {
7567            uri.append("sourceBounds=")
7568                    .append(Uri.encode(mSourceBounds.flattenToString()))
7569                    .append(';');
7570        }
7571        if (mExtras != null) {
7572            for (String key : mExtras.keySet()) {
7573                final Object value = mExtras.get(key);
7574                char entryType =
7575                        value instanceof String    ? 'S' :
7576                        value instanceof Boolean   ? 'B' :
7577                        value instanceof Byte      ? 'b' :
7578                        value instanceof Character ? 'c' :
7579                        value instanceof Double    ? 'd' :
7580                        value instanceof Float     ? 'f' :
7581                        value instanceof Integer   ? 'i' :
7582                        value instanceof Long      ? 'l' :
7583                        value instanceof Short     ? 's' :
7584                        '\0';
7585
7586                if (entryType != '\0') {
7587                    uri.append(entryType);
7588                    uri.append('.');
7589                    uri.append(Uri.encode(key));
7590                    uri.append('=');
7591                    uri.append(Uri.encode(value.toString()));
7592                    uri.append(';');
7593                }
7594            }
7595        }
7596    }
7597
7598    public int describeContents() {
7599        return (mExtras != null) ? mExtras.describeContents() : 0;
7600    }
7601
7602    public void writeToParcel(Parcel out, int flags) {
7603        out.writeString(mAction);
7604        Uri.writeToParcel(out, mData);
7605        out.writeString(mType);
7606        out.writeInt(mFlags);
7607        out.writeString(mPackage);
7608        ComponentName.writeToParcel(mComponent, out);
7609
7610        if (mSourceBounds != null) {
7611            out.writeInt(1);
7612            mSourceBounds.writeToParcel(out, flags);
7613        } else {
7614            out.writeInt(0);
7615        }
7616
7617        if (mCategories != null) {
7618            final int N = mCategories.size();
7619            out.writeInt(N);
7620            for (int i=0; i<N; i++) {
7621                out.writeString(mCategories.valueAt(i));
7622            }
7623        } else {
7624            out.writeInt(0);
7625        }
7626
7627        if (mSelector != null) {
7628            out.writeInt(1);
7629            mSelector.writeToParcel(out, flags);
7630        } else {
7631            out.writeInt(0);
7632        }
7633
7634        if (mClipData != null) {
7635            out.writeInt(1);
7636            mClipData.writeToParcel(out, flags);
7637        } else {
7638            out.writeInt(0);
7639        }
7640        out.writeInt(mContentUserHint);
7641        out.writeBundle(mExtras);
7642    }
7643
7644    public static final Parcelable.Creator<Intent> CREATOR
7645            = new Parcelable.Creator<Intent>() {
7646        public Intent createFromParcel(Parcel in) {
7647            return new Intent(in);
7648        }
7649        public Intent[] newArray(int size) {
7650            return new Intent[size];
7651        }
7652    };
7653
7654    /** @hide */
7655    protected Intent(Parcel in) {
7656        readFromParcel(in);
7657    }
7658
7659    public void readFromParcel(Parcel in) {
7660        setAction(in.readString());
7661        mData = Uri.CREATOR.createFromParcel(in);
7662        mType = in.readString();
7663        mFlags = in.readInt();
7664        mPackage = in.readString();
7665        mComponent = ComponentName.readFromParcel(in);
7666
7667        if (in.readInt() != 0) {
7668            mSourceBounds = Rect.CREATOR.createFromParcel(in);
7669        }
7670
7671        int N = in.readInt();
7672        if (N > 0) {
7673            mCategories = new ArraySet<String>();
7674            int i;
7675            for (i=0; i<N; i++) {
7676                mCategories.add(in.readString().intern());
7677            }
7678        } else {
7679            mCategories = null;
7680        }
7681
7682        if (in.readInt() != 0) {
7683            mSelector = new Intent(in);
7684        }
7685
7686        if (in.readInt() != 0) {
7687            mClipData = new ClipData(in);
7688        }
7689        mContentUserHint = in.readInt();
7690        mExtras = in.readBundle();
7691    }
7692
7693    /**
7694     * Parses the "intent" element (and its children) from XML and instantiates
7695     * an Intent object.  The given XML parser should be located at the tag
7696     * where parsing should start (often named "intent"), from which the
7697     * basic action, data, type, and package and class name will be
7698     * retrieved.  The function will then parse in to any child elements,
7699     * looking for <category android:name="xxx"> tags to add categories and
7700     * <extra android:name="xxx" android:value="yyy"> to attach extra data
7701     * to the intent.
7702     *
7703     * @param resources The Resources to use when inflating resources.
7704     * @param parser The XML parser pointing at an "intent" tag.
7705     * @param attrs The AttributeSet interface for retrieving extended
7706     * attribute data at the current <var>parser</var> location.
7707     * @return An Intent object matching the XML data.
7708     * @throws XmlPullParserException If there was an XML parsing error.
7709     * @throws IOException If there was an I/O error.
7710     */
7711    public static Intent parseIntent(Resources resources, XmlPullParser parser, AttributeSet attrs)
7712            throws XmlPullParserException, IOException {
7713        Intent intent = new Intent();
7714
7715        TypedArray sa = resources.obtainAttributes(attrs,
7716                com.android.internal.R.styleable.Intent);
7717
7718        intent.setAction(sa.getString(com.android.internal.R.styleable.Intent_action));
7719
7720        String data = sa.getString(com.android.internal.R.styleable.Intent_data);
7721        String mimeType = sa.getString(com.android.internal.R.styleable.Intent_mimeType);
7722        intent.setDataAndType(data != null ? Uri.parse(data) : null, mimeType);
7723
7724        String packageName = sa.getString(com.android.internal.R.styleable.Intent_targetPackage);
7725        String className = sa.getString(com.android.internal.R.styleable.Intent_targetClass);
7726        if (packageName != null && className != null) {
7727            intent.setComponent(new ComponentName(packageName, className));
7728        }
7729
7730        sa.recycle();
7731
7732        int outerDepth = parser.getDepth();
7733        int type;
7734        while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
7735               && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
7736            if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
7737                continue;
7738            }
7739
7740            String nodeName = parser.getName();
7741            if (nodeName.equals(TAG_CATEGORIES)) {
7742                sa = resources.obtainAttributes(attrs,
7743                        com.android.internal.R.styleable.IntentCategory);
7744                String cat = sa.getString(com.android.internal.R.styleable.IntentCategory_name);
7745                sa.recycle();
7746
7747                if (cat != null) {
7748                    intent.addCategory(cat);
7749                }
7750                XmlUtils.skipCurrentTag(parser);
7751
7752            } else if (nodeName.equals(TAG_EXTRA)) {
7753                if (intent.mExtras == null) {
7754                    intent.mExtras = new Bundle();
7755                }
7756                resources.parseBundleExtra(TAG_EXTRA, attrs, intent.mExtras);
7757                XmlUtils.skipCurrentTag(parser);
7758
7759            } else {
7760                XmlUtils.skipCurrentTag(parser);
7761            }
7762        }
7763
7764        return intent;
7765    }
7766
7767    /** @hide */
7768    public void saveToXml(XmlSerializer out) throws IOException {
7769        if (mAction != null) {
7770            out.attribute(null, ATTR_ACTION, mAction);
7771        }
7772        if (mData != null) {
7773            out.attribute(null, ATTR_DATA, mData.toString());
7774        }
7775        if (mType != null) {
7776            out.attribute(null, ATTR_TYPE, mType);
7777        }
7778        if (mComponent != null) {
7779            out.attribute(null, ATTR_COMPONENT, mComponent.flattenToShortString());
7780        }
7781        out.attribute(null, ATTR_FLAGS, Integer.toHexString(getFlags()));
7782
7783        if (mCategories != null) {
7784            out.startTag(null, TAG_CATEGORIES);
7785            for (int categoryNdx = mCategories.size() - 1; categoryNdx >= 0; --categoryNdx) {
7786                out.attribute(null, ATTR_CATEGORY, mCategories.valueAt(categoryNdx));
7787            }
7788            out.endTag(null, TAG_CATEGORIES);
7789        }
7790    }
7791
7792    /** @hide */
7793    public static Intent restoreFromXml(XmlPullParser in) throws IOException,
7794            XmlPullParserException {
7795        Intent intent = new Intent();
7796        final int outerDepth = in.getDepth();
7797
7798        int attrCount = in.getAttributeCount();
7799        for (int attrNdx = attrCount - 1; attrNdx >= 0; --attrNdx) {
7800            final String attrName = in.getAttributeName(attrNdx);
7801            final String attrValue = in.getAttributeValue(attrNdx);
7802            if (ATTR_ACTION.equals(attrName)) {
7803                intent.setAction(attrValue);
7804            } else if (ATTR_DATA.equals(attrName)) {
7805                intent.setData(Uri.parse(attrValue));
7806            } else if (ATTR_TYPE.equals(attrName)) {
7807                intent.setType(attrValue);
7808            } else if (ATTR_COMPONENT.equals(attrName)) {
7809                intent.setComponent(ComponentName.unflattenFromString(attrValue));
7810            } else if (ATTR_FLAGS.equals(attrName)) {
7811                intent.setFlags(Integer.valueOf(attrValue, 16));
7812            } else {
7813                Log.e("Intent", "restoreFromXml: unknown attribute=" + attrName);
7814            }
7815        }
7816
7817        int event;
7818        String name;
7819        while (((event = in.next()) != XmlPullParser.END_DOCUMENT) &&
7820                (event != XmlPullParser.END_TAG || in.getDepth() < outerDepth)) {
7821            if (event == XmlPullParser.START_TAG) {
7822                name = in.getName();
7823                if (TAG_CATEGORIES.equals(name)) {
7824                    attrCount = in.getAttributeCount();
7825                    for (int attrNdx = attrCount - 1; attrNdx >= 0; --attrNdx) {
7826                        intent.addCategory(in.getAttributeValue(attrNdx));
7827                    }
7828                } else {
7829                    Log.w("Intent", "restoreFromXml: unknown name=" + name);
7830                    XmlUtils.skipCurrentTag(in);
7831                }
7832            }
7833        }
7834
7835        return intent;
7836    }
7837
7838    /**
7839     * Normalize a MIME data type.
7840     *
7841     * <p>A normalized MIME type has white-space trimmed,
7842     * content-type parameters removed, and is lower-case.
7843     * This aligns the type with Android best practices for
7844     * intent filtering.
7845     *
7846     * <p>For example, "text/plain; charset=utf-8" becomes "text/plain".
7847     * "text/x-vCard" becomes "text/x-vcard".
7848     *
7849     * <p>All MIME types received from outside Android (such as user input,
7850     * or external sources like Bluetooth, NFC, or the Internet) should
7851     * be normalized before they are used to create an Intent.
7852     *
7853     * @param type MIME data type to normalize
7854     * @return normalized MIME data type, or null if the input was null
7855     * @see #setType
7856     * @see #setTypeAndNormalize
7857     */
7858    public static String normalizeMimeType(String type) {
7859        if (type == null) {
7860            return null;
7861        }
7862
7863        type = type.trim().toLowerCase(Locale.ROOT);
7864
7865        final int semicolonIndex = type.indexOf(';');
7866        if (semicolonIndex != -1) {
7867            type = type.substring(0, semicolonIndex);
7868        }
7869        return type;
7870    }
7871
7872    /**
7873     * Prepare this {@link Intent} to leave an app process.
7874     *
7875     * @hide
7876     */
7877    public void prepareToLeaveProcess() {
7878        setAllowFds(false);
7879
7880        if (mSelector != null) {
7881            mSelector.prepareToLeaveProcess();
7882        }
7883        if (mClipData != null) {
7884            mClipData.prepareToLeaveProcess();
7885        }
7886
7887        if (mData != null && StrictMode.vmFileUriExposureEnabled()) {
7888            // There are several ACTION_MEDIA_* broadcasts that send file://
7889            // Uris, so only check common actions.
7890            if (ACTION_VIEW.equals(mAction) ||
7891                    ACTION_EDIT.equals(mAction) ||
7892                    ACTION_ATTACH_DATA.equals(mAction)) {
7893                mData.checkFileUriExposed("Intent.getData()");
7894            }
7895        }
7896    }
7897
7898    /**
7899     * @hide
7900     */
7901    public void prepareToEnterProcess() {
7902        if (mContentUserHint != UserHandle.USER_CURRENT) {
7903            if (UserHandle.getAppId(Process.myUid()) != Process.SYSTEM_UID) {
7904                fixUris(mContentUserHint);
7905                mContentUserHint = UserHandle.USER_CURRENT;
7906            }
7907        }
7908    }
7909
7910    /**
7911     * @hide
7912     */
7913     public void fixUris(int contentUserHint) {
7914        Uri data = getData();
7915        if (data != null) {
7916            mData = maybeAddUserId(data, contentUserHint);
7917        }
7918        if (mClipData != null) {
7919            mClipData.fixUris(contentUserHint);
7920        }
7921        String action = getAction();
7922        if (ACTION_SEND.equals(action)) {
7923            final Uri stream = getParcelableExtra(EXTRA_STREAM);
7924            if (stream != null) {
7925                putExtra(EXTRA_STREAM, maybeAddUserId(stream, contentUserHint));
7926            }
7927        } else if (ACTION_SEND_MULTIPLE.equals(action)) {
7928            final ArrayList<Uri> streams = getParcelableArrayListExtra(EXTRA_STREAM);
7929            if (streams != null) {
7930                ArrayList<Uri> newStreams = new ArrayList<Uri>();
7931                for (int i = 0; i < streams.size(); i++) {
7932                    newStreams.add(maybeAddUserId(streams.get(i), contentUserHint));
7933                }
7934                putParcelableArrayListExtra(EXTRA_STREAM, newStreams);
7935            }
7936        } else if (MediaStore.ACTION_IMAGE_CAPTURE.equals(action)
7937                || MediaStore.ACTION_IMAGE_CAPTURE_SECURE.equals(action)
7938                || MediaStore.ACTION_VIDEO_CAPTURE.equals(action)) {
7939            final Uri output = getParcelableExtra(MediaStore.EXTRA_OUTPUT);
7940            if (output != null) {
7941                putExtra(MediaStore.EXTRA_OUTPUT, maybeAddUserId(output, contentUserHint));
7942            }
7943        }
7944     }
7945
7946    /**
7947     * Migrate any {@link #EXTRA_STREAM} in {@link #ACTION_SEND} and
7948     * {@link #ACTION_SEND_MULTIPLE} to {@link ClipData}. Also inspects nested
7949     * intents in {@link #ACTION_CHOOSER}.
7950     *
7951     * @return Whether any contents were migrated.
7952     * @hide
7953     */
7954    public boolean migrateExtraStreamToClipData() {
7955        // Refuse to touch if extras already parcelled
7956        if (mExtras != null && mExtras.isParcelled()) return false;
7957
7958        // Bail when someone already gave us ClipData
7959        if (getClipData() != null) return false;
7960
7961        final String action = getAction();
7962        if (ACTION_CHOOSER.equals(action)) {
7963            // Inspect contained intents to see if we need to migrate extras. We
7964            // don't promote ClipData to the parent, since ChooserActivity will
7965            // already start the picked item as the caller, and we can't combine
7966            // the flags in a safe way.
7967
7968            boolean migrated = false;
7969            try {
7970                final Intent intent = getParcelableExtra(EXTRA_INTENT);
7971                if (intent != null) {
7972                    migrated |= intent.migrateExtraStreamToClipData();
7973                }
7974            } catch (ClassCastException e) {
7975            }
7976            try {
7977                final Parcelable[] intents = getParcelableArrayExtra(EXTRA_INITIAL_INTENTS);
7978                if (intents != null) {
7979                    for (int i = 0; i < intents.length; i++) {
7980                        final Intent intent = (Intent) intents[i];
7981                        if (intent != null) {
7982                            migrated |= intent.migrateExtraStreamToClipData();
7983                        }
7984                    }
7985                }
7986            } catch (ClassCastException e) {
7987            }
7988            return migrated;
7989
7990        } else if (ACTION_SEND.equals(action)) {
7991            try {
7992                final Uri stream = getParcelableExtra(EXTRA_STREAM);
7993                final CharSequence text = getCharSequenceExtra(EXTRA_TEXT);
7994                final String htmlText = getStringExtra(EXTRA_HTML_TEXT);
7995                if (stream != null || text != null || htmlText != null) {
7996                    final ClipData clipData = new ClipData(
7997                            null, new String[] { getType() },
7998                            new ClipData.Item(text, htmlText, null, stream));
7999                    setClipData(clipData);
8000                    addFlags(FLAG_GRANT_READ_URI_PERMISSION);
8001                    return true;
8002                }
8003            } catch (ClassCastException e) {
8004            }
8005
8006        } else if (ACTION_SEND_MULTIPLE.equals(action)) {
8007            try {
8008                final ArrayList<Uri> streams = getParcelableArrayListExtra(EXTRA_STREAM);
8009                final ArrayList<CharSequence> texts = getCharSequenceArrayListExtra(EXTRA_TEXT);
8010                final ArrayList<String> htmlTexts = getStringArrayListExtra(EXTRA_HTML_TEXT);
8011                int num = -1;
8012                if (streams != null) {
8013                    num = streams.size();
8014                }
8015                if (texts != null) {
8016                    if (num >= 0 && num != texts.size()) {
8017                        // Wha...!  F- you.
8018                        return false;
8019                    }
8020                    num = texts.size();
8021                }
8022                if (htmlTexts != null) {
8023                    if (num >= 0 && num != htmlTexts.size()) {
8024                        // Wha...!  F- you.
8025                        return false;
8026                    }
8027                    num = htmlTexts.size();
8028                }
8029                if (num > 0) {
8030                    final ClipData clipData = new ClipData(
8031                            null, new String[] { getType() },
8032                            makeClipItem(streams, texts, htmlTexts, 0));
8033
8034                    for (int i = 1; i < num; i++) {
8035                        clipData.addItem(makeClipItem(streams, texts, htmlTexts, i));
8036                    }
8037
8038                    setClipData(clipData);
8039                    addFlags(FLAG_GRANT_READ_URI_PERMISSION);
8040                    return true;
8041                }
8042            } catch (ClassCastException e) {
8043            }
8044        } else if (MediaStore.ACTION_IMAGE_CAPTURE.equals(action)
8045                || MediaStore.ACTION_IMAGE_CAPTURE_SECURE.equals(action)
8046                || MediaStore.ACTION_VIDEO_CAPTURE.equals(action)) {
8047            final Uri output;
8048            try {
8049                output = getParcelableExtra(MediaStore.EXTRA_OUTPUT);
8050            } catch (ClassCastException e) {
8051                return false;
8052            }
8053            if (output != null) {
8054                setClipData(ClipData.newRawUri("", output));
8055                addFlags(FLAG_GRANT_WRITE_URI_PERMISSION|FLAG_GRANT_READ_URI_PERMISSION);
8056                return true;
8057            }
8058        }
8059
8060        return false;
8061    }
8062
8063    private static ClipData.Item makeClipItem(ArrayList<Uri> streams, ArrayList<CharSequence> texts,
8064            ArrayList<String> htmlTexts, int which) {
8065        Uri uri = streams != null ? streams.get(which) : null;
8066        CharSequence text = texts != null ? texts.get(which) : null;
8067        String htmlText = htmlTexts != null ? htmlTexts.get(which) : null;
8068        return new ClipData.Item(text, htmlText, null, uri);
8069    }
8070
8071    /** @hide */
8072    public boolean isDocument() {
8073        return (mFlags & FLAG_ACTIVITY_NEW_DOCUMENT) == FLAG_ACTIVITY_NEW_DOCUMENT;
8074    }
8075}
8076