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