Intent.java revision 2a73de7b21a89aa2ba4c254d28658b49793425b2
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 org.xmlpull.v1.XmlPullParser;
20import org.xmlpull.v1.XmlPullParserException;
21
22import android.annotation.SdkConstant;
23import android.annotation.SdkConstant.SdkConstantType;
24import android.content.pm.ActivityInfo;
25import android.content.pm.PackageManager;
26import android.content.pm.ResolveInfo;
27import android.content.res.Resources;
28import android.content.res.TypedArray;
29import android.net.Uri;
30import android.os.Bundle;
31import android.os.IBinder;
32import android.os.Parcel;
33import android.os.Parcelable;
34import android.util.AttributeSet;
35import android.util.Log;
36import com.android.internal.util.XmlUtils;
37
38import java.io.IOException;
39import java.io.Serializable;
40import java.net.URISyntaxException;
41import java.util.ArrayList;
42import java.util.HashSet;
43import java.util.Iterator;
44import java.util.Set;
45
46/**
47 * An intent is an abstract description of an operation to be performed.  It
48 * can be used with {@link Context#startActivity(Intent) startActivity} to
49 * launch an {@link android.app.Activity},
50 * {@link android.content.Context#sendBroadcast(Intent) broadcastIntent} to
51 * send it to any interested {@link BroadcastReceiver BroadcastReceiver} components,
52 * and {@link android.content.Context#startService} or
53 * {@link android.content.Context#bindService} to communicate with a
54 * background {@link android.app.Service}.
55 *
56 * <p>An Intent provides a facility for performing late runtime binding between
57 * the code in different applications.  Its most significant use is in the
58 * launching of activities, where it can be thought of as the glue between
59 * activities. It is
60 * basically a passive data structure holding an abstract description of an
61 * action to be performed. The primary pieces of information in an intent
62 * are:</p>
63 *
64 * <ul>
65 *   <li> <p><b>action</b> -- The general action to be performed, such as
66 *     {@link #ACTION_VIEW}, {@link #ACTION_EDIT}, {@link #ACTION_MAIN},
67 *     etc.</p>
68 *   </li>
69 *   <li> <p><b>data</b> -- The data to operate on, such as a person record
70 *     in the contacts database, expressed as a {@link android.net.Uri}.</p>
71 *   </li>
72 * </ul>
73 *
74 *
75 * <p>Some examples of action/data pairs are:</p>
76 *
77 * <ul>
78 *   <li> <p><b>{@link #ACTION_VIEW} <i>content://contacts/1</i></b> -- Display
79 *     information about the person whose identifier is "1".</p>
80 *   </li>
81 *   <li> <p><b>{@link #ACTION_DIAL} <i>content://contacts/1</i></b> -- Display
82 *     the phone dialer with the person filled in.</p>
83 *   </li>
84 *   <li> <p><b>{@link #ACTION_VIEW} <i>tel:123</i></b> -- Display
85 *     the phone dialer with the given number filled in.  Note how the
86 *     VIEW action does what what is considered the most reasonable thing for
87 *     a particular URI.</p>
88 *   </li>
89 *   <li> <p><b>{@link #ACTION_DIAL} <i>tel:123</i></b> -- Display
90 *     the phone dialer with the given number filled in.</p>
91 *   </li>
92 *   <li> <p><b>{@link #ACTION_EDIT} <i>content://contacts/1</i></b> -- Edit
93 *     information about the person whose identifier is "1".</p>
94 *   </li>
95 *   <li> <p><b>{@link #ACTION_VIEW} <i>content://contacts/</i></b> -- Display
96 *     a list of people, which the user can browse through.  This example is a
97 *     typical top-level entry into the Contacts application, showing you the
98 *     list of people. Selecting a particular person to view would result in a
99 *     new intent { <b>{@link #ACTION_VIEW} <i>content://contacts/N</i></b> }
100 *     being used to start an activity to display that person.</p>
101 *   </li>
102 * </ul>
103 *
104 * <p>In addition to these primary attributes, there are a number of secondary
105 * attributes that you can also include with an intent:</p>
106 *
107 * <ul>
108 *     <li> <p><b>category</b> -- Gives additional information about the action
109 *         to execute.  For example, {@link #CATEGORY_LAUNCHER} means it should
110 *         appear in the Launcher as a top-level application, while
111 *         {@link #CATEGORY_ALTERNATIVE} means it should be included in a list
112 *         of alternative actions the user can perform on a piece of data.</p>
113 *     <li> <p><b>type</b> -- Specifies an explicit type (a MIME type) of the
114 *         intent data.  Normally the type is inferred from the data itself.
115 *         By setting this attribute, you disable that evaluation and force
116 *         an explicit type.</p>
117 *     <li> <p><b>component</b> -- Specifies an explicit name of a component
118 *         class to use for the intent.  Normally this is determined by looking
119 *         at the other information in the intent (the action, data/type, and
120 *         categories) and matching that with a component that can handle it.
121 *         If this attribute is set then none of the evaluation is performed,
122 *         and this component is used exactly as is.  By specifying this attribute,
123 *         all of the other Intent attributes become optional.</p>
124 *     <li> <p><b>extras</b> -- This is a {@link Bundle} of any additional information.
125 *         This can be used to provide extended information to the component.
126 *         For example, if we have a action to send an e-mail message, we could
127 *         also include extra pieces of data here to supply a subject, body,
128 *         etc.</p>
129 * </ul>
130 *
131 * <p>Here are some examples of other operations you can specify as intents
132 * using these additional parameters:</p>
133 *
134 * <ul>
135 *   <li> <p><b>{@link #ACTION_MAIN} with category {@link #CATEGORY_HOME}</b> --
136 *     Launch the home screen.</p>
137 *   </li>
138 *   <li> <p><b>{@link #ACTION_GET_CONTENT} with MIME type
139 *     <i>{@link android.provider.Contacts.Phones#CONTENT_URI
140 *     vnd.android.cursor.item/phone}</i></b>
141 *     -- Display the list of people's phone numbers, allowing the user to
142 *     browse through them and pick one and return it to the parent activity.</p>
143 *   </li>
144 *   <li> <p><b>{@link #ACTION_GET_CONTENT} with MIME type
145 *     <i>*{@literal /}*</i> and category {@link #CATEGORY_OPENABLE}</b>
146 *     -- Display all pickers for data that can be opened with
147 *     {@link ContentResolver#openInputStream(Uri) ContentResolver.openInputStream()},
148 *     allowing the user to pick one of them and then some data inside of it
149 *     and returning the resulting URI to the caller.  This can be used,
150 *     for example, in an e-mail application to allow the user to pick some
151 *     data to include as an attachment.</p>
152 *   </li>
153 * </ul>
154 *
155 * <p>There are a variety of standard Intent action and category constants
156 * defined in the Intent class, but applications can also define their own.
157 * These strings use java style scoping, to ensure they are unique -- for
158 * example, the standard {@link #ACTION_VIEW} is called
159 * "android.app.action.VIEW".</p>
160 *
161 * <p>Put together, the set of actions, data types, categories, and extra data
162 * defines a language for the system allowing for the expression of phrases
163 * such as "call john smith's cell".  As applications are added to the system,
164 * they can extend this language by adding new actions, types, and categories, or
165 * they can modify the behavior of existing phrases by supplying their own
166 * activities that handle them.</p>
167 *
168 * <a name="IntentResolution"></a>
169 * <h3>Intent Resolution</h3>
170 *
171 * <p>There are two primary forms of intents you will use.
172 *
173 * <ul>
174 *     <li> <p><b>Explicit Intents</b> have specified a component (via
175 *     {@link #setComponent} or {@link #setClass}), which provides the exact
176 *     class to be run.  Often these will not include any other information,
177 *     simply being a way for an application to launch various internal
178 *     activities it has as the user interacts with the application.
179 *
180 *     <li> <p><b>Implicit Intents</b> have not specified a component;
181 *     instead, they must include enough information for the system to
182 *     determine which of the available components is best to run for that
183 *     intent.
184 * </ul>
185 *
186 * <p>When using implicit intents, given such an arbitrary intent we need to
187 * know what to do with it. This is handled by the process of <em>Intent
188 * resolution</em>, which maps an Intent to an {@link android.app.Activity},
189 * {@link BroadcastReceiver}, or {@link android.app.Service} (or sometimes two or
190 * more activities/receivers) that can handle it.</p>
191 *
192 * <p>The intent resolution mechanism basically revolves around matching an
193 * Intent against all of the &lt;intent-filter&gt; descriptions in the
194 * installed application packages.  (Plus, in the case of broadcasts, any {@link BroadcastReceiver}
195 * objects explicitly registered with {@link Context#registerReceiver}.)  More
196 * details on this can be found in the documentation on the {@link
197 * IntentFilter} class.</p>
198 *
199 * <p>There are three pieces of information in the Intent that are used for
200 * resolution: the action, type, and category.  Using this information, a query
201 * is done on the {@link PackageManager} for a component that can handle the
202 * intent. The appropriate component is determined based on the intent
203 * information supplied in the <code>AndroidManifest.xml</code> file as
204 * follows:</p>
205 *
206 * <ul>
207 *     <li> <p>The <b>action</b>, if given, must be listed by the component as
208 *         one it handles.</p>
209 *     <li> <p>The <b>type</b> is retrieved from the Intent's data, if not
210 *         already supplied in the Intent.  Like the action, if a type is
211 *         included in the intent (either explicitly or implicitly in its
212 *         data), then this must be listed by the component as one it handles.</p>
213 *     <li> For data that is not a <code>content:</code> URI and where no explicit
214 *         type is included in the Intent, instead the <b>scheme</b> of the
215 *         intent data (such as <code>http:</code> or <code>mailto:</code>) is
216 *         considered. Again like the action, if we are matching a scheme it
217 *         must be listed by the component as one it can handle.
218 *     <li> <p>The <b>categories</b>, if supplied, must <em>all</em> be listed
219 *         by the activity as categories it handles.  That is, if you include
220 *         the categories {@link #CATEGORY_LAUNCHER} and
221 *         {@link #CATEGORY_ALTERNATIVE}, then you will only resolve to components
222 *         with an intent that lists <em>both</em> of those categories.
223 *         Activities will very often need to support the
224 *         {@link #CATEGORY_DEFAULT} so that they can be found by
225 *         {@link Context#startActivity Context.startActivity()}.</p>
226 * </ul>
227 *
228 * <p>For example, consider the Note Pad sample application that
229 * allows user to browse through a list of notes data and view details about
230 * individual items.  Text in italics indicate places were you would replace a
231 * name with one specific to your own package.</p>
232 *
233 * <pre> &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android"
234 *       package="<i>com.android.notepad</i>"&gt;
235 *     &lt;application android:icon="@drawable/app_notes"
236 *             android:label="@string/app_name"&gt;
237 *
238 *         &lt;provider class=".NotePadProvider"
239 *                 android:authorities="<i>com.google.provider.NotePad</i>" /&gt;
240 *
241 *         &lt;activity class=".NotesList" android:label="@string/title_notes_list"&gt;
242 *             &lt;intent-filter&gt;
243 *                 &lt;action android:value="android.intent.action.MAIN" /&gt;
244 *                 &lt;category android:value="android.intent.category.LAUNCHER" /&gt;
245 *             &lt;/intent-filter&gt;
246 *             &lt;intent-filter&gt;
247 *                 &lt;action android:value="android.intent.action.VIEW" /&gt;
248 *                 &lt;action android:value="android.intent.action.EDIT" /&gt;
249 *                 &lt;action android:value="android.intent.action.PICK" /&gt;
250 *                 &lt;category android:value="android.intent.category.DEFAULT" /&gt;
251 *                 &lt;type android:value="vnd.android.cursor.dir/<i>vnd.google.note</i>" /&gt;
252 *             &lt;/intent-filter&gt;
253 *             &lt;intent-filter&gt;
254 *                 &lt;action android:value="android.intent.action.GET_CONTENT" /&gt;
255 *                 &lt;category android:value="android.intent.category.DEFAULT" /&gt;
256 *                 &lt;type android:value="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
257 *             &lt;/intent-filter&gt;
258 *         &lt;/activity&gt;
259 *
260 *         &lt;activity class=".NoteEditor" android:label="@string/title_note"&gt;
261 *             &lt;intent-filter android:label="@string/resolve_edit"&gt;
262 *                 &lt;action android:value="android.intent.action.VIEW" /&gt;
263 *                 &lt;action android:value="android.intent.action.EDIT" /&gt;
264 *                 &lt;category android:value="android.intent.category.DEFAULT" /&gt;
265 *                 &lt;type android:value="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
266 *             &lt;/intent-filter&gt;
267 *
268 *             &lt;intent-filter&gt;
269 *                 &lt;action android:value="android.intent.action.INSERT" /&gt;
270 *                 &lt;category android:value="android.intent.category.DEFAULT" /&gt;
271 *                 &lt;type android:value="vnd.android.cursor.dir/<i>vnd.google.note</i>" /&gt;
272 *             &lt;/intent-filter&gt;
273 *
274 *         &lt;/activity&gt;
275 *
276 *         &lt;activity class=".TitleEditor" android:label="@string/title_edit_title"
277 *                 android:theme="@android:style/Theme.Dialog"&gt;
278 *             &lt;intent-filter android:label="@string/resolve_title"&gt;
279 *                 &lt;action android:value="<i>com.android.notepad.action.EDIT_TITLE</i>" /&gt;
280 *                 &lt;category android:value="android.intent.category.DEFAULT" /&gt;
281 *                 &lt;category android:value="android.intent.category.ALTERNATIVE" /&gt;
282 *                 &lt;category android:value="android.intent.category.SELECTED_ALTERNATIVE" /&gt;
283 *                 &lt;type android:value="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
284 *             &lt;/intent-filter&gt;
285 *         &lt;/activity&gt;
286 *
287 *     &lt;/application&gt;
288 * &lt;/manifest&gt;</pre>
289 *
290 * <p>The first activity,
291 * <code>com.android.notepad.NotesList</code>, serves as our main
292 * entry into the app.  It can do three things as described by its three intent
293 * templates:
294 * <ol>
295 * <li><pre>
296 * &lt;intent-filter&gt;
297 *     &lt;action android:value="{@link #ACTION_MAIN android.intent.action.MAIN}" /&gt;
298 *     &lt;category android:value="{@link #CATEGORY_LAUNCHER android.intent.category.LAUNCHER}" /&gt;
299 * &lt;/intent-filter&gt;</pre>
300 * <p>This provides a top-level entry into the NotePad application: the standard
301 * MAIN action is a main entry point (not requiring any other information in
302 * the Intent), and the LAUNCHER category says that this entry point should be
303 * listed in the application launcher.</p>
304 * <li><pre>
305 * &lt;intent-filter&gt;
306 *     &lt;action android:value="{@link #ACTION_VIEW android.intent.action.VIEW}" /&gt;
307 *     &lt;action android:value="{@link #ACTION_EDIT android.intent.action.EDIT}" /&gt;
308 *     &lt;action android:value="{@link #ACTION_PICK android.intent.action.PICK}" /&gt;
309 *     &lt;category android:value="{@link #CATEGORY_DEFAULT android.intent.category.DEFAULT}" /&gt;
310 *     &lt;type android:value="vnd.android.cursor.dir/<i>vnd.google.note</i>" /&gt;
311 * &lt;/intent-filter&gt;</pre>
312 * <p>This declares the things that the activity can do on a directory of
313 * notes.  The type being supported is given with the &lt;type&gt; tag, where
314 * <code>vnd.android.cursor.dir/vnd.google.note</code> is a URI from which
315 * a Cursor of zero or more items (<code>vnd.android.cursor.dir</code>) can
316 * be retrieved which holds our note pad data (<code>vnd.google.note</code>).
317 * The activity allows the user to view or edit the directory of data (via
318 * the VIEW and EDIT actions), or to pick a particular note and return it
319 * to the caller (via the PICK action).  Note also the DEFAULT category
320 * supplied here: this is <em>required</em> for the
321 * {@link Context#startActivity Context.startActivity} method to resolve your
322 * activity when its component name is not explicitly specified.</p>
323 * <li><pre>
324 * &lt;intent-filter&gt;
325 *     &lt;action android:value="{@link #ACTION_GET_CONTENT android.intent.action.GET_CONTENT}" /&gt;
326 *     &lt;category android:value="{@link #CATEGORY_DEFAULT android.intent.category.DEFAULT}" /&gt;
327 *     &lt;type android:value="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
328 * &lt;/intent-filter&gt;</pre>
329 * <p>This filter describes the ability return to the caller a note selected by
330 * the user without needing to know where it came from.  The data type
331 * <code>vnd.android.cursor.item/vnd.google.note</code> is a URI from which
332 * a Cursor of exactly one (<code>vnd.android.cursor.item</code>) item can
333 * be retrieved which contains our note pad data (<code>vnd.google.note</code>).
334 * The GET_CONTENT action is similar to the PICK action, where the activity
335 * will return to its caller a piece of data selected by the user.  Here,
336 * however, the caller specifies the type of data they desire instead of
337 * the type of data the user will be picking from.</p>
338 * </ol>
339 *
340 * <p>Given these capabilities, the following intents will resolve to the
341 * NotesList activity:</p>
342 *
343 * <ul>
344 *     <li> <p><b>{ action=android.app.action.MAIN }</b> matches all of the
345 *         activities that can be used as top-level entry points into an
346 *         application.</p>
347 *     <li> <p><b>{ action=android.app.action.MAIN,
348 *         category=android.app.category.LAUNCHER }</b> is the actual intent
349 *         used by the Launcher to populate its top-level list.</p>
350 *     <li> <p><b>{ action=android.app.action.VIEW
351 *          data=content://com.google.provider.NotePad/notes }</b>
352 *         displays a list of all the notes under
353 *         "content://com.google.provider.NotePad/notes", which
354 *         the user can browse through and see the details on.</p>
355 *     <li> <p><b>{ action=android.app.action.PICK
356 *          data=content://com.google.provider.NotePad/notes }</b>
357 *         provides a list of the notes under
358 *         "content://com.google.provider.NotePad/notes", from which
359 *         the user can pick a note whose data URL is returned back to the caller.</p>
360 *     <li> <p><b>{ action=android.app.action.GET_CONTENT
361 *          type=vnd.android.cursor.item/vnd.google.note }</b>
362 *         is similar to the pick action, but allows the caller to specify the
363 *         kind of data they want back so that the system can find the appropriate
364 *         activity to pick something of that data type.</p>
365 * </ul>
366 *
367 * <p>The second activity,
368 * <code>com.android.notepad.NoteEditor</code>, shows the user a single
369 * note entry and allows them to edit it.  It can do two things as described
370 * by its two intent templates:
371 * <ol>
372 * <li><pre>
373 * &lt;intent-filter android:label="@string/resolve_edit"&gt;
374 *     &lt;action android:value="{@link #ACTION_VIEW android.intent.action.VIEW}" /&gt;
375 *     &lt;action android:value="{@link #ACTION_EDIT android.intent.action.EDIT}" /&gt;
376 *     &lt;category android:value="{@link #CATEGORY_DEFAULT android.intent.category.DEFAULT}" /&gt;
377 *     &lt;type android:value="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
378 * &lt;/intent-filter&gt;</pre>
379 * <p>The first, primary, purpose of this activity is to let the user interact
380 * with a single note, as decribed by the MIME type
381 * <code>vnd.android.cursor.item/vnd.google.note</code>.  The activity can
382 * either VIEW a note or allow the user to EDIT it.  Again we support the
383 * DEFAULT category to allow the activity to be launched without explicitly
384 * specifying its component.</p>
385 * <li><pre>
386 * &lt;intent-filter&gt;
387 *     &lt;action android:value="{@link #ACTION_INSERT android.intent.action.INSERT}" /&gt;
388 *     &lt;category android:value="{@link #CATEGORY_DEFAULT android.intent.category.DEFAULT}" /&gt;
389 *     &lt;type android:value="vnd.android.cursor.dir/<i>vnd.google.note</i>" /&gt;
390 * &lt;/intent-filter&gt;</pre>
391 * <p>The secondary use of this activity is to insert a new note entry into
392 * an existing directory of notes.  This is used when the user creates a new
393 * note: the INSERT action is executed on the directory of notes, causing
394 * this activity to run and have the user create the new note data which
395 * it then adds to the content provider.</p>
396 * </ol>
397 *
398 * <p>Given these capabilities, the following intents will resolve to the
399 * NoteEditor activity:</p>
400 *
401 * <ul>
402 *     <li> <p><b>{ action=android.app.action.VIEW
403 *          data=content://com.google.provider.NotePad/notes/<var>{ID}</var> }</b>
404 *         shows the user the content of note <var>{ID}</var>.</p>
405 *     <li> <p><b>{ action=android.app.action.EDIT
406 *          data=content://com.google.provider.NotePad/notes/<var>{ID}</var> }</b>
407 *         allows the user to edit the content of note <var>{ID}</var>.</p>
408 *     <li> <p><b>{ action=android.app.action.INSERT
409 *          data=content://com.google.provider.NotePad/notes }</b>
410 *         creates a new, empty note in the notes list at
411 *         "content://com.google.provider.NotePad/notes"
412 *         and allows the user to edit it.  If they keep their changes, the URI
413 *         of the newly created note is returned to the caller.</p>
414 * </ul>
415 *
416 * <p>The last activity,
417 * <code>com.android.notepad.TitleEditor</code>, allows the user to
418 * edit the title of a note.  This could be implemented as a class that the
419 * application directly invokes (by explicitly setting its component in
420 * the Intent), but here we show a way you can publish alternative
421 * operations on existing data:</p>
422 *
423 * <pre>
424 * &lt;intent-filter android:label="@string/resolve_title"&gt;
425 *     &lt;action android:value="<i>com.android.notepad.action.EDIT_TITLE</i>" /&gt;
426 *     &lt;category android:value="{@link #CATEGORY_DEFAULT android.intent.category.DEFAULT}" /&gt;
427 *     &lt;category android:value="{@link #CATEGORY_ALTERNATIVE android.intent.category.ALTERNATIVE}" /&gt;
428 *     &lt;category android:value="{@link #CATEGORY_SELECTED_ALTERNATIVE android.intent.category.SELECTED_ALTERNATIVE}" /&gt;
429 *     &lt;type android:value="vnd.android.cursor.item/<i>vnd.google.note</i>" /&gt;
430 * &lt;/intent-filter&gt;</pre>
431 *
432 * <p>In the single intent template here, we
433 * have created our own private action called
434 * <code>com.android.notepad.action.EDIT_TITLE</code> which means to
435 * edit the title of a note.  It must be invoked on a specific note
436 * (data type <code>vnd.android.cursor.item/vnd.google.note</code>) like the previous
437 * view and edit actions, but here displays and edits the title contained
438 * in the note data.
439 *
440 * <p>In addition to supporting the default category as usual, our title editor
441 * also supports two other standard categories: ALTERNATIVE and
442 * SELECTED_ALTERNATIVE.  Implementing
443 * these categories allows others to find the special action it provides
444 * without directly knowing about it, through the
445 * {@link android.content.pm.PackageManager#queryIntentActivityOptions} method, or
446 * more often to build dynamic menu items with
447 * {@link android.view.Menu#addIntentOptions}.  Note that in the intent
448 * template here was also supply an explicit name for the template
449 * (via <code>android:label="@string/resolve_title"</code>) to better control
450 * what the user sees when presented with this activity as an alternative
451 * action to the data they are viewing.
452 *
453 * <p>Given these capabilities, the following intent will resolve to the
454 * TitleEditor activity:</p>
455 *
456 * <ul>
457 *     <li> <p><b>{ action=com.android.notepad.action.EDIT_TITLE
458 *          data=content://com.google.provider.NotePad/notes/<var>{ID}</var> }</b>
459 *         displays and allows the user to edit the title associated
460 *         with note <var>{ID}</var>.</p>
461 * </ul>
462 *
463 * <h3>Standard Activity Actions</h3>
464 *
465 * <p>These are the current standard actions that Intent defines for launching
466 * activities (usually through {@link Context#startActivity}.  The most
467 * important, and by far most frequently used, are {@link #ACTION_MAIN} and
468 * {@link #ACTION_EDIT}.
469 *
470 * <ul>
471 *     <li> {@link #ACTION_MAIN}
472 *     <li> {@link #ACTION_VIEW}
473 *     <li> {@link #ACTION_ATTACH_DATA}
474 *     <li> {@link #ACTION_EDIT}
475 *     <li> {@link #ACTION_PICK}
476 *     <li> {@link #ACTION_CHOOSER}
477 *     <li> {@link #ACTION_GET_CONTENT}
478 *     <li> {@link #ACTION_DIAL}
479 *     <li> {@link #ACTION_CALL}
480 *     <li> {@link #ACTION_SEND}
481 *     <li> {@link #ACTION_SENDTO}
482 *     <li> {@link #ACTION_ANSWER}
483 *     <li> {@link #ACTION_INSERT}
484 *     <li> {@link #ACTION_DELETE}
485 *     <li> {@link #ACTION_RUN}
486 *     <li> {@link #ACTION_SYNC}
487 *     <li> {@link #ACTION_PICK_ACTIVITY}
488 *     <li> {@link #ACTION_SEARCH}
489 *     <li> {@link #ACTION_WEB_SEARCH}
490 *     <li> {@link #ACTION_FACTORY_TEST}
491 * </ul>
492 *
493 * <h3>Standard Broadcast Actions</h3>
494 *
495 * <p>These are the current standard actions that Intent defines for receiving
496 * broadcasts (usually through {@link Context#registerReceiver} or a
497 * &lt;receiver&gt; tag in a manifest).
498 *
499 * <ul>
500 *     <li> {@link #ACTION_TIME_TICK}
501 *     <li> {@link #ACTION_TIME_CHANGED}
502 *     <li> {@link #ACTION_TIMEZONE_CHANGED}
503 *     <li> {@link #ACTION_BOOT_COMPLETED}
504 *     <li> {@link #ACTION_PACKAGE_ADDED}
505 *     <li> {@link #ACTION_PACKAGE_CHANGED}
506 *     <li> {@link #ACTION_PACKAGE_REMOVED}
507 *     <li> {@link #ACTION_PACKAGE_RESTARTED}
508 *     <li> {@link #ACTION_PACKAGE_DATA_CLEARED}
509 *     <li> {@link #ACTION_UID_REMOVED}
510 *     <li> {@link #ACTION_BATTERY_CHANGED}
511 *     <li> {@link #ACTION_POWER_CONNECTED}
512 *     <li> {@link #ACTION_POWER_DISCONNECTED}
513 * </ul>
514 *
515 * <h3>Standard Categories</h3>
516 *
517 * <p>These are the current standard categories that can be used to further
518 * clarify an Intent via {@link #addCategory}.
519 *
520 * <ul>
521 *     <li> {@link #CATEGORY_DEFAULT}
522 *     <li> {@link #CATEGORY_BROWSABLE}
523 *     <li> {@link #CATEGORY_TAB}
524 *     <li> {@link #CATEGORY_ALTERNATIVE}
525 *     <li> {@link #CATEGORY_SELECTED_ALTERNATIVE}
526 *     <li> {@link #CATEGORY_LAUNCHER}
527 *     <li> {@link #CATEGORY_INFO}
528 *     <li> {@link #CATEGORY_HOME}
529 *     <li> {@link #CATEGORY_PREFERENCE}
530 *     <li> {@link #CATEGORY_TEST}
531 * </ul>
532 *
533 * <h3>Standard Extra Data</h3>
534 *
535 * <p>These are the current standard fields that can be used as extra data via
536 * {@link #putExtra}.
537 *
538 * <ul>
539 *     <li> {@link #EXTRA_TEMPLATE}
540 *     <li> {@link #EXTRA_INTENT}
541 *     <li> {@link #EXTRA_STREAM}
542 *     <li> {@link #EXTRA_TEXT}
543 * </ul>
544 *
545 * <h3>Flags</h3>
546 *
547 * <p>These are the possible flags that can be used in the Intent via
548 * {@link #setFlags} and {@link #addFlags}.  See {@link #setFlags} for a list
549 * of all possible flags.
550 */
551public class Intent implements Parcelable {
552    // ---------------------------------------------------------------------
553    // ---------------------------------------------------------------------
554    // Standard intent activity actions (see action variable).
555
556    /**
557     *  Activity Action: Start as a main entry point, does not expect to
558     *  receive data.
559     *  <p>Input: nothing
560     *  <p>Output: nothing
561     */
562    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
563    public static final String ACTION_MAIN = "android.intent.action.MAIN";
564
565    /**
566     * Activity Action: Display the data to the user.  This is the most common
567     * action performed on data -- it is the generic action you can use on
568     * a piece of data to get the most reasonable thing to occur.  For example,
569     * when used on a contacts entry it will view the entry; when used on a
570     * mailto: URI it will bring up a compose window filled with the information
571     * supplied by the URI; when used with a tel: URI it will invoke the
572     * dialer.
573     * <p>Input: {@link #getData} is URI from which to retrieve data.
574     * <p>Output: nothing.
575     */
576    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
577    public static final String ACTION_VIEW = "android.intent.action.VIEW";
578
579    /**
580     * A synonym for {@link #ACTION_VIEW}, the "standard" action that is
581     * performed on a piece of data.
582     */
583    public static final String ACTION_DEFAULT = ACTION_VIEW;
584
585    /**
586     * Used to indicate that some piece of data should be attached to some other
587     * place.  For example, image data could be attached to a contact.  It is up
588     * to the recipient to decide where the data should be attached; the intent
589     * does not specify the ultimate destination.
590     * <p>Input: {@link #getData} is URI of data to be attached.
591     * <p>Output: nothing.
592     */
593    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
594    public static final String ACTION_ATTACH_DATA = "android.intent.action.ATTACH_DATA";
595
596    /**
597     * Activity Action: Provide explicit editable access to the given data.
598     * <p>Input: {@link #getData} is URI of data to be edited.
599     * <p>Output: nothing.
600     */
601    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
602    public static final String ACTION_EDIT = "android.intent.action.EDIT";
603
604    /**
605     * Activity Action: Pick an existing item, or insert a new item, and then edit it.
606     * <p>Input: {@link #getType} is the desired MIME type of the item to create or edit.
607     * The extras can contain type specific data to pass through to the editing/creating
608     * activity.
609     * <p>Output: The URI of the item that was picked.  This must be a content:
610     * URI so that any receiver can access it.
611     */
612    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
613    public static final String ACTION_INSERT_OR_EDIT = "android.intent.action.INSERT_OR_EDIT";
614
615    /**
616     * Activity Action: Pick an item from the data, returning what was selected.
617     * <p>Input: {@link #getData} is URI containing a directory of data
618     * (vnd.android.cursor.dir/*) from which to pick an item.
619     * <p>Output: The URI of the item that was picked.
620     */
621    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
622    public static final String ACTION_PICK = "android.intent.action.PICK";
623
624    /**
625     * Activity Action: Creates a shortcut.
626     * <p>Input: Nothing.</p>
627     * <p>Output: An Intent representing the shortcut. The intent must contain three
628     * extras: SHORTCUT_INTENT (value: Intent), SHORTCUT_NAME (value: String),
629     * and SHORTCUT_ICON (value: Bitmap) or SHORTCUT_ICON_RESOURCE
630     * (value: ShortcutIconResource).</p>
631     *
632     * @see #EXTRA_SHORTCUT_INTENT
633     * @see #EXTRA_SHORTCUT_NAME
634     * @see #EXTRA_SHORTCUT_ICON
635     * @see #EXTRA_SHORTCUT_ICON_RESOURCE
636     * @see android.content.Intent.ShortcutIconResource
637     */
638    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
639    public static final String ACTION_CREATE_SHORTCUT = "android.intent.action.CREATE_SHORTCUT";
640
641    /**
642     * The name of the extra used to define the Intent of a shortcut.
643     *
644     * @see #ACTION_CREATE_SHORTCUT
645     */
646    public static final String EXTRA_SHORTCUT_INTENT = "android.intent.extra.shortcut.INTENT";
647    /**
648     * The name of the extra used to define the name of a shortcut.
649     *
650     * @see #ACTION_CREATE_SHORTCUT
651     */
652    public static final String EXTRA_SHORTCUT_NAME = "android.intent.extra.shortcut.NAME";
653    /**
654     * The name of the extra used to define the icon, as a Bitmap, of a shortcut.
655     *
656     * @see #ACTION_CREATE_SHORTCUT
657     */
658    public static final String EXTRA_SHORTCUT_ICON = "android.intent.extra.shortcut.ICON";
659    /**
660     * The name of the extra used to define the icon, as a ShortcutIconResource, of a shortcut.
661     *
662     * @see #ACTION_CREATE_SHORTCUT
663     * @see android.content.Intent.ShortcutIconResource
664     */
665    public static final String EXTRA_SHORTCUT_ICON_RESOURCE =
666            "android.intent.extra.shortcut.ICON_RESOURCE";
667
668    /**
669     * Represents a shortcut/live folder icon resource.
670     *
671     * @see Intent#ACTION_CREATE_SHORTCUT
672     * @see Intent#EXTRA_SHORTCUT_ICON_RESOURCE
673     * @see android.provider.LiveFolders#ACTION_CREATE_LIVE_FOLDER
674     * @see android.provider.LiveFolders#EXTRA_LIVE_FOLDER_ICON
675     */
676    public static class ShortcutIconResource implements Parcelable {
677        /**
678         * The package name of the application containing the icon.
679         */
680        public String packageName;
681
682        /**
683         * The resource name of the icon, including package, name and type.
684         */
685        public String resourceName;
686
687        /**
688         * Creates a new ShortcutIconResource for the specified context and resource
689         * identifier.
690         *
691         * @param context The context of the application.
692         * @param resourceId The resource idenfitier for the icon.
693         * @return A new ShortcutIconResource with the specified's context package name
694         *         and icon resource idenfitier.
695         */
696        public static ShortcutIconResource fromContext(Context context, int resourceId) {
697            ShortcutIconResource icon = new ShortcutIconResource();
698            icon.packageName = context.getPackageName();
699            icon.resourceName = context.getResources().getResourceName(resourceId);
700            return icon;
701        }
702
703        /**
704         * Used to read a ShortcutIconResource from a Parcel.
705         */
706        public static final Parcelable.Creator<ShortcutIconResource> CREATOR =
707            new Parcelable.Creator<ShortcutIconResource>() {
708
709                public ShortcutIconResource createFromParcel(Parcel source) {
710                    ShortcutIconResource icon = new ShortcutIconResource();
711                    icon.packageName = source.readString();
712                    icon.resourceName = source.readString();
713                    return icon;
714                }
715
716                public ShortcutIconResource[] newArray(int size) {
717                    return new ShortcutIconResource[size];
718                }
719            };
720
721        /**
722         * No special parcel contents.
723         */
724        public int describeContents() {
725            return 0;
726        }
727
728        public void writeToParcel(Parcel dest, int flags) {
729            dest.writeString(packageName);
730            dest.writeString(resourceName);
731        }
732
733        @Override
734        public String toString() {
735            return resourceName;
736        }
737    }
738
739    /**
740     * Activity Action: Display an activity chooser, allowing the user to pick
741     * what they want to before proceeding.  This can be used as an alternative
742     * to the standard activity picker that is displayed by the system when
743     * you try to start an activity with multiple possible matches, with these
744     * differences in behavior:
745     * <ul>
746     * <li>You can specify the title that will appear in the activity chooser.
747     * <li>The user does not have the option to make one of the matching
748     * activities a preferred activity, and all possible activities will
749     * always be shown even if one of them is currently marked as the
750     * preferred activity.
751     * </ul>
752     * <p>
753     * This action should be used when the user will naturally expect to
754     * select an activity in order to proceed.  An example if when not to use
755     * it is when the user clicks on a "mailto:" link.  They would naturally
756     * expect to go directly to their mail app, so startActivity() should be
757     * called directly: it will
758     * either launch the current preferred app, or put up a dialog allowing the
759     * user to pick an app to use and optionally marking that as preferred.
760     * <p>
761     * In contrast, if the user is selecting a menu item to send a picture
762     * they are viewing to someone else, there are many different things they
763     * may want to do at this point: send it through e-mail, upload it to a
764     * web service, etc.  In this case the CHOOSER action should be used, to
765     * always present to the user a list of the things they can do, with a
766     * nice title given by the caller such as "Send this photo with:".
767     * <p>
768     * As a convenience, an Intent of this form can be created with the
769     * {@link #createChooser} function.
770     * <p>Input: No data should be specified.  get*Extra must have
771     * a {@link #EXTRA_INTENT} field containing the Intent being executed,
772     * and can optionally have a {@link #EXTRA_TITLE} field containing the
773     * title text to display in the chooser.
774     * <p>Output: Depends on the protocol of {@link #EXTRA_INTENT}.
775     */
776    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
777    public static final String ACTION_CHOOSER = "android.intent.action.CHOOSER";
778
779    /**
780     * Convenience function for creating a {@link #ACTION_CHOOSER} Intent.
781     *
782     * @param target The Intent that the user will be selecting an activity
783     * to perform.
784     * @param title Optional title that will be displayed in the chooser.
785     * @return Return a new Intent object that you can hand to
786     * {@link Context#startActivity(Intent) Context.startActivity()} and
787     * related methods.
788     */
789    public static Intent createChooser(Intent target, CharSequence title) {
790        Intent intent = new Intent(ACTION_CHOOSER);
791        intent.putExtra(EXTRA_INTENT, target);
792        if (title != null) {
793            intent.putExtra(EXTRA_TITLE, title);
794        }
795        return intent;
796    }
797    /**
798     * Activity Action: Allow the user to select a particular kind of data and
799     * return it.  This is different than {@link #ACTION_PICK} in that here we
800     * just say what kind of data is desired, not a URI of existing data from
801     * which the user can pick.  A ACTION_GET_CONTENT could allow the user to
802     * create the data as it runs (for example taking a picture or recording a
803     * sound), let them browser over the web and download the desired data,
804     * etc.
805     * <p>
806     * There are two main ways to use this action: if you want an specific kind
807     * of data, such as a person contact, you set the MIME type to the kind of
808     * data you want and launch it with {@link Context#startActivity(Intent)}.
809     * The system will then launch the best application to select that kind
810     * of data for you.
811     * <p>
812     * You may also be interested in any of a set of types of content the user
813     * can pick.  For example, an e-mail application that wants to allow the
814     * user to add an attachment to an e-mail message can use this action to
815     * bring up a list of all of the types of content the user can attach.
816     * <p>
817     * In this case, you should wrap the GET_CONTENT intent with a chooser
818     * (through {@link #createChooser}), which will give the proper interface
819     * for the user to pick how to send your data and allow you to specify
820     * a prompt indicating what they are doing.  You will usually specify a
821     * broad MIME type (such as image/* or {@literal *}/*), resulting in a
822     * broad range of content types the user can select from.
823     * <p>
824     * When using such a broad GET_CONTENT action, it is often desireable to
825     * only pick from data that can be represented as a stream.  This is
826     * accomplished by requiring the {@link #CATEGORY_OPENABLE} in the Intent.
827     * <p>
828     * Input: {@link #getType} is the desired MIME type to retrieve.  Note
829     * that no URI is supplied in the intent, as there are no constraints on
830     * where the returned data originally comes from.  You may also include the
831     * {@link #CATEGORY_OPENABLE} if you can only accept data that can be
832     * opened as a stream.
833     * <p>
834     * Output: The URI of the item that was picked.  This must be a content:
835     * URI so that any receiver can access it.
836     */
837    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
838    public static final String ACTION_GET_CONTENT = "android.intent.action.GET_CONTENT";
839    /**
840     * Activity Action: Dial a number as specified by the data.  This shows a
841     * UI with the number being dialed, allowing the user to explicitly
842     * initiate the call.
843     * <p>Input: If nothing, an empty dialer is started; else {@link #getData}
844     * is URI of a phone number to be dialed or a tel: URI of an explicit phone
845     * number.
846     * <p>Output: nothing.
847     */
848    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
849    public static final String ACTION_DIAL = "android.intent.action.DIAL";
850    /**
851     * Activity Action: Perform a call to someone specified by the data.
852     * <p>Input: If nothing, an empty dialer is started; else {@link #getData}
853     * is URI of a phone number to be dialed or a tel: URI of an explicit phone
854     * number.
855     * <p>Output: nothing.
856     *
857     * <p>Note: there will be restrictions on which applications can initiate a
858     * call; most applications should use the {@link #ACTION_DIAL}.
859     * <p>Note: this Intent <strong>cannot</strong> be used to call emergency
860     * numbers.  Applications can <strong>dial</strong> emergency numbers using
861     * {@link #ACTION_DIAL}, however.
862     */
863    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
864    public static final String ACTION_CALL = "android.intent.action.CALL";
865    /**
866     * Activity Action: Perform a call to an emergency number specified by the
867     * data.
868     * <p>Input: {@link #getData} is URI of a phone number to be dialed or a
869     * tel: URI of an explicit phone number.
870     * <p>Output: nothing.
871     * @hide
872     */
873    public static final String ACTION_CALL_EMERGENCY = "android.intent.action.CALL_EMERGENCY";
874    /**
875     * Activity action: Perform a call to any number (emergency or not)
876     * specified by the data.
877     * <p>Input: {@link #getData} is URI of a phone number to be dialed or a
878     * tel: URI of an explicit phone number.
879     * <p>Output: nothing.
880     * @hide
881     */
882    public static final String ACTION_CALL_PRIVILEGED = "android.intent.action.CALL_PRIVILEGED";
883    /**
884     * Activity Action: Send a message to someone specified by the data.
885     * <p>Input: {@link #getData} is URI describing the target.
886     * <p>Output: nothing.
887     */
888    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
889    public static final String ACTION_SENDTO = "android.intent.action.SENDTO";
890    /**
891     * Activity Action: Deliver some data to someone else.  Who the data is
892     * being delivered to is not specified; it is up to the receiver of this
893     * action to ask the user where the data should be sent.
894     * <p>
895     * When launching a SEND intent, you should usually wrap it in a chooser
896     * (through {@link #createChooser}), which will give the proper interface
897     * for the user to pick how to send your data and allow you to specify
898     * a prompt indicating what they are doing.
899     * <p>
900     * Input: {@link #getType} is the MIME type of the data being sent.
901     * get*Extra can have either a {@link #EXTRA_TEXT}
902     * or {@link #EXTRA_STREAM} field, containing the data to be sent.  If
903     * using EXTRA_TEXT, the MIME type should be "text/plain"; otherwise it
904     * should be the MIME type of the data in EXTRA_STREAM.  Use {@literal *}/*
905     * if the MIME type is unknown (this will only allow senders that can
906     * handle generic data streams).
907     * <p>
908     * Optional standard extras, which may be interpreted by some recipients as
909     * appropriate, are: {@link #EXTRA_EMAIL}, {@link #EXTRA_CC},
910     * {@link #EXTRA_BCC}, {@link #EXTRA_SUBJECT}.
911     * <p>
912     * Output: nothing.
913     */
914    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
915    public static final String ACTION_SEND = "android.intent.action.SEND";
916    /**
917     * Activity Action: Handle an incoming phone call.
918     * <p>Input: nothing.
919     * <p>Output: nothing.
920     */
921    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
922    public static final String ACTION_ANSWER = "android.intent.action.ANSWER";
923    /**
924     * Activity Action: Insert an empty item into the given container.
925     * <p>Input: {@link #getData} is URI of the directory (vnd.android.cursor.dir/*)
926     * in which to place the data.
927     * <p>Output: URI of the new data that was created.
928     */
929    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
930    public static final String ACTION_INSERT = "android.intent.action.INSERT";
931    /**
932     * Activity Action: Delete the given data from its container.
933     * <p>Input: {@link #getData} is URI of data to be deleted.
934     * <p>Output: nothing.
935     */
936    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
937    public static final String ACTION_DELETE = "android.intent.action.DELETE";
938    /**
939     * Activity Action: Run the data, whatever that means.
940     * <p>Input: ?  (Note: this is currently specific to the test harness.)
941     * <p>Output: nothing.
942     */
943    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
944    public static final String ACTION_RUN = "android.intent.action.RUN";
945    /**
946     * Activity Action: Perform a data synchronization.
947     * <p>Input: ?
948     * <p>Output: ?
949     */
950    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
951    public static final String ACTION_SYNC = "android.intent.action.SYNC";
952    /**
953     * Activity Action: Pick an activity given an intent, returning the class
954     * selected.
955     * <p>Input: get*Extra field {@link #EXTRA_INTENT} is an Intent
956     * used with {@link PackageManager#queryIntentActivities} to determine the
957     * set of activities from which to pick.
958     * <p>Output: Class name of the activity that was selected.
959     */
960    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
961    public static final String ACTION_PICK_ACTIVITY = "android.intent.action.PICK_ACTIVITY";
962    /**
963     * Activity Action: Perform a search.
964     * <p>Input: {@link android.app.SearchManager#QUERY getStringExtra(SearchManager.QUERY)}
965     * is the text to search for.  If empty, simply
966     * enter your search results Activity with the search UI activated.
967     * <p>Output: nothing.
968     */
969    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
970    public static final String ACTION_SEARCH = "android.intent.action.SEARCH";
971    /**
972     * Activity Action: Perform a web search.
973     * <p>
974     * Input: {@link android.app.SearchManager#QUERY
975     * getStringExtra(SearchManager.QUERY)} is the text to search for. If it is
976     * a url starts with http or https, the site will be opened. If it is plain
977     * text, Google search will be applied.
978     * <p>
979     * Output: nothing.
980     */
981    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
982    public static final String ACTION_WEB_SEARCH = "android.intent.action.WEB_SEARCH";
983    /**
984     * Activity Action: List all available applications
985     * <p>Input: Nothing.
986     * <p>Output: nothing.
987     */
988    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
989    public static final String ACTION_ALL_APPS = "android.intent.action.ALL_APPS";
990    /**
991     * Activity Action: Show settings for choosing wallpaper
992     * <p>Input: Nothing.
993     * <p>Output: Nothing.
994     */
995    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
996    public static final String ACTION_SET_WALLPAPER = "android.intent.action.SET_WALLPAPER";
997
998    /**
999     * Activity Action: Show activity for reporting a bug.
1000     * <p>Input: Nothing.
1001     * <p>Output: Nothing.
1002     */
1003    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1004    public static final String ACTION_BUG_REPORT = "android.intent.action.BUG_REPORT";
1005
1006    /**
1007     *  Activity Action: Main entry point for factory tests.  Only used when
1008     *  the device is booting in factory test node.  The implementing package
1009     *  must be installed in the system image.
1010     *  <p>Input: nothing
1011     *  <p>Output: nothing
1012     */
1013    public static final String ACTION_FACTORY_TEST = "android.intent.action.FACTORY_TEST";
1014
1015    /**
1016     * Activity Action: The user pressed the "call" button to go to the dialer
1017     * or other appropriate UI for placing a call.
1018     * <p>Input: Nothing.
1019     * <p>Output: Nothing.
1020     */
1021    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1022    public static final String ACTION_CALL_BUTTON = "android.intent.action.CALL_BUTTON";
1023
1024    /**
1025     * Activity Action: Start Voice Command.
1026     * <p>Input: Nothing.
1027     * <p>Output: Nothing.
1028     */
1029    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1030    public static final String ACTION_VOICE_COMMAND = "android.intent.action.VOICE_COMMAND";
1031
1032    /**
1033     * Activity Action: Start action associated with long pressing on the
1034     * search key.
1035     * <p>Input: Nothing.
1036     * <p>Output: Nothing.
1037     */
1038    @SdkConstant(SdkConstantType.ACTIVITY_INTENT_ACTION)
1039    public static final String ACTION_SEARCH_LONG_PRESS = "android.intent.action.SEARCH_LONG_PRESS";
1040
1041    // ---------------------------------------------------------------------
1042    // ---------------------------------------------------------------------
1043    // Standard intent broadcast actions (see action variable).
1044
1045    /**
1046     * Broadcast Action: Sent after the screen turns off.
1047     */
1048    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1049    public static final String ACTION_SCREEN_OFF = "android.intent.action.SCREEN_OFF";
1050    /**
1051     * Broadcast Action: Sent after the screen turns on.
1052     */
1053    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1054    public static final String ACTION_SCREEN_ON = "android.intent.action.SCREEN_ON";
1055
1056    /**
1057     * Broadcast Action: Sent when the user is present after device wakes up (e.g when the
1058     * keyguard is gone).
1059     */
1060    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1061    public static final String ACTION_USER_PRESENT= "android.intent.action.USER_PRESENT";
1062
1063    /**
1064     * Broadcast Action: The current time has changed.  Sent every
1065     * minute.  You can <em>not</em> receive this through components declared
1066     * in manifests, only by exlicitly registering for it with
1067     * {@link Context#registerReceiver(BroadcastReceiver, IntentFilter)
1068     * Context.registerReceiver()}.
1069     */
1070    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1071    public static final String ACTION_TIME_TICK = "android.intent.action.TIME_TICK";
1072    /**
1073     * Broadcast Action: The time was set.
1074     */
1075    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1076    public static final String ACTION_TIME_CHANGED = "android.intent.action.TIME_SET";
1077    /**
1078     * Broadcast Action: The date has changed.
1079     */
1080    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1081    public static final String ACTION_DATE_CHANGED = "android.intent.action.DATE_CHANGED";
1082    /**
1083     * Broadcast Action: The timezone has changed. The intent will have the following extra values:</p>
1084     * <ul>
1085     *   <li><em>time-zone</em> - The java.util.TimeZone.getID() value identifying the new time zone.</li>
1086     * </ul>
1087     */
1088    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1089    public static final String ACTION_TIMEZONE_CHANGED = "android.intent.action.TIMEZONE_CHANGED";
1090    /**
1091     * Alarm Changed Action: This is broadcast when the AlarmClock
1092     * application's alarm is set or unset.  It is used by the
1093     * AlarmClock application and the StatusBar service.
1094     * @hide
1095     */
1096    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1097    public static final String ACTION_ALARM_CHANGED = "android.intent.action.ALARM_CHANGED";
1098    /**
1099     * Sync State Changed Action: This is broadcast when the sync starts or stops or when one has
1100     * been failing for a long time.  It is used by the SyncManager and the StatusBar service.
1101     * @hide
1102     */
1103    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1104    public static final String ACTION_SYNC_STATE_CHANGED
1105            = "android.intent.action.SYNC_STATE_CHANGED";
1106    /**
1107     * Broadcast Action: This is broadcast once, after the system has finished
1108     * booting.  It can be used to perform application-specific initialization,
1109     * such as installing alarms.  You must hold the
1110     * {@link android.Manifest.permission#RECEIVE_BOOT_COMPLETED} permission
1111     * in order to receive this broadcast.
1112     */
1113    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1114    public static final String ACTION_BOOT_COMPLETED = "android.intent.action.BOOT_COMPLETED";
1115    /**
1116     * Broadcast Action: This is broadcast when a user action should request a
1117     * temporary system dialog to dismiss.  Some examples of temporary system
1118     * dialogs are the notification window-shade and the recent tasks dialog.
1119     */
1120    public static final String ACTION_CLOSE_SYSTEM_DIALOGS = "android.intent.action.CLOSE_SYSTEM_DIALOGS";
1121    /**
1122     * Broadcast Action: Trigger the download and eventual installation
1123     * of a package.
1124     * <p>Input: {@link #getData} is the URI of the package file to download.
1125     */
1126    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1127    public static final String ACTION_PACKAGE_INSTALL = "android.intent.action.PACKAGE_INSTALL";
1128    /**
1129     * Broadcast Action: A new application package has been installed on the
1130     * device. The data contains the name of the package.
1131     * <p>My include the following extras:
1132     * <ul>
1133     * <li> {@link #EXTRA_UID} containing the integer uid assigned to the new package.
1134     * <li> {@link #EXTRA_REPLACING} is set to true if this is following
1135     * an {@link #ACTION_PACKAGE_REMOVED} broadcast for the same package.
1136     * </ul>
1137     */
1138    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1139    public static final String ACTION_PACKAGE_ADDED = "android.intent.action.PACKAGE_ADDED";
1140    /**
1141     * Broadcast Action: An existing application package has been removed from
1142     * the device.  The data contains the name of the package.  The package
1143     * that is being installed does <em>not</em> receive this Intent.
1144     * <ul>
1145     * <li> {@link #EXTRA_UID} containing the integer uid previously assigned
1146     * to the package.
1147     * <li> {@link #EXTRA_DATA_REMOVED} is set to true if the entire
1148     * application -- data and code -- is being removed.
1149     * <li> {@link #EXTRA_REPLACING} is set to true if this will be followed
1150     * by an {@link #ACTION_PACKAGE_ADDED} broadcast for the same package.
1151     * </ul>
1152     */
1153    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1154    public static final String ACTION_PACKAGE_REMOVED = "android.intent.action.PACKAGE_REMOVED";
1155    /**
1156     * Broadcast Action: An existing application package has been changed (e.g. a component has been
1157     * enabled or disabled.  The data contains the name of the package.
1158     * <ul>
1159     * <li> {@link #EXTRA_UID} containing the integer uid assigned to the package.
1160     * </ul>
1161     */
1162    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1163    public static final String ACTION_PACKAGE_CHANGED = "android.intent.action.PACKAGE_CHANGED";
1164    /**
1165     * Broadcast Action: The user has restarted a package, and all of its
1166     * processes have been killed.  All runtime state
1167     * associated with it (processes, alarms, notifications, etc) should
1168     * be removed.  The data contains the name of the package.
1169     * <ul>
1170     * <li> {@link #EXTRA_UID} containing the integer uid assigned to the package.
1171     * </ul>
1172     */
1173    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1174    public static final String ACTION_PACKAGE_RESTARTED = "android.intent.action.PACKAGE_RESTARTED";
1175    /**
1176     * Broadcast Action: The user has cleared the data of a package.  This should
1177     * be preceded by {@link #ACTION_PACKAGE_RESTARTED}, after which all of
1178     * its persistent data is erased and this broadcast sent.  The data contains
1179     * the name of the package.
1180     * <ul>
1181     * <li> {@link #EXTRA_UID} containing the integer uid assigned to the package.
1182     * </ul>
1183     */
1184    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1185    public static final String ACTION_PACKAGE_DATA_CLEARED = "android.intent.action.PACKAGE_DATA_CLEARED";
1186    /**
1187     * Broadcast Action: A user ID has been removed from the system.  The user
1188     * ID number is stored in the extra data under {@link #EXTRA_UID}.
1189     */
1190    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1191    public static final String ACTION_UID_REMOVED = "android.intent.action.UID_REMOVED";
1192    /**
1193     * Broadcast Action:  The current system wallpaper has changed.  See
1194     * {@link Context#getWallpaper} for retrieving the new wallpaper.
1195     */
1196    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1197    public static final String ACTION_WALLPAPER_CHANGED = "android.intent.action.WALLPAPER_CHANGED";
1198    /**
1199     * Broadcast Action: The current device {@link android.content.res.Configuration}
1200     * (orientation, locale, etc) has changed.  When such a change happens, the
1201     * UIs (view hierarchy) will need to be rebuilt based on this new
1202     * information; for the most part, applications don't need to worry about
1203     * this, because the system will take care of stopping and restarting the
1204     * application to make sure it sees the new changes.  Some system code that
1205     * can not be restarted will need to watch for this action and handle it
1206     * appropriately.
1207     *
1208     * @see android.content.res.Configuration
1209     */
1210    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1211    public static final String ACTION_CONFIGURATION_CHANGED = "android.intent.action.CONFIGURATION_CHANGED";
1212    /**
1213     * Broadcast Action:  The charging state, or charge level of the battery has
1214     * changed.
1215     *
1216     * <p class="note">
1217     * You can <em>not</em> receive this through components declared
1218     * in manifests, only by exlicitly registering for it with
1219     * {@link Context#registerReceiver(BroadcastReceiver, IntentFilter)
1220     * Context.registerReceiver()}.
1221     */
1222    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1223    public static final String ACTION_BATTERY_CHANGED = "android.intent.action.BATTERY_CHANGED";
1224    /**
1225     * Broadcast Action:  Indicates low battery condition on the device.
1226     * This broadcast corresponds to the "Low battery warning" system dialog.
1227     */
1228    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1229    public static final String ACTION_BATTERY_LOW = "android.intent.action.BATTERY_LOW";
1230    /**
1231     * Broadcast Action:  External power has been connected to the device.
1232     * This is intended for applications that wish to register specifically to this notification.
1233     * Unlike ACTION_BATTERY_CHANGED, applications will be woken for this and so do not have to
1234     * stay active to receive this notification.  This action can be used to implement actions
1235     * that wait until power is available to trigger.
1236     */
1237    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1238    public static final String ACTION_POWER_CONNECTED = "android.intent.action.POWER_CONNECTED";
1239    /**
1240     * Broadcast Action:  External power has been removed from the device.
1241     * This is intended for applications that wish to register specifically to this notification.
1242     * Unlike ACTION_BATTERY_CHANGED, applications will be woken for this and so do not have to
1243     * stay active to receive this notification.  This action can be used to implement actions
1244     * that wait until power is available to trigger.
1245     */
1246    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1247    public static final String ACTION_POWER_DISCONNECTED =
1248            "android.intent.action.POWER_DISCONNECTED";
1249    /**
1250     * Broadcast Action:  Indicates low memory condition on the device
1251     */
1252    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1253    public static final String ACTION_DEVICE_STORAGE_LOW = "android.intent.action.DEVICE_STORAGE_LOW";
1254    /**
1255     * Broadcast Action:  Indicates low memory condition on the device no longer exists
1256     */
1257    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1258    public static final String ACTION_DEVICE_STORAGE_OK = "android.intent.action.DEVICE_STORAGE_OK";
1259    /**
1260     * Broadcast Action:  Indicates low memory condition notification acknowledged by user
1261     * and package management should be started.
1262     * This is triggered by the user from the ACTION_DEVICE_STORAGE_LOW
1263     * notification.
1264     */
1265    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1266    public static final String ACTION_MANAGE_PACKAGE_STORAGE = "android.intent.action.MANAGE_PACKAGE_STORAGE";
1267    /**
1268     * Broadcast Action:  The device has entered USB Mass Storage mode.
1269     * This is used mainly for the USB Settings panel.
1270     * Apps should listen for ACTION_MEDIA_MOUNTED and ACTION_MEDIA_UNMOUNTED broadcasts to be notified
1271     * when the SD card file system is mounted or unmounted
1272     */
1273    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1274    public static final String ACTION_UMS_CONNECTED = "android.intent.action.UMS_CONNECTED";
1275
1276    /**
1277     * Broadcast Action:  The device has exited USB Mass Storage mode.
1278     * This is used mainly for the USB Settings panel.
1279     * Apps should listen for ACTION_MEDIA_MOUNTED and ACTION_MEDIA_UNMOUNTED broadcasts to be notified
1280     * when the SD card file system is mounted or unmounted
1281     */
1282    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1283    public static final String ACTION_UMS_DISCONNECTED = "android.intent.action.UMS_DISCONNECTED";
1284
1285    /**
1286     * Broadcast Action:  External media has been removed.
1287     * The path to the mount point for the removed media is contained in the Intent.mData field.
1288     */
1289    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1290    public static final String ACTION_MEDIA_REMOVED = "android.intent.action.MEDIA_REMOVED";
1291
1292    /**
1293     * Broadcast Action:  External media is present, but not mounted at its mount point.
1294     * The path to the mount point for the removed media is contained in the Intent.mData field.
1295     */
1296    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1297    public static final String ACTION_MEDIA_UNMOUNTED = "android.intent.action.MEDIA_UNMOUNTED";
1298
1299    /**
1300     * Broadcast Action:  External media is present, and being disk-checked
1301     * The path to the mount point for the checking media is contained in the Intent.mData field.
1302     */
1303    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1304    public static final String ACTION_MEDIA_CHECKING = "android.intent.action.MEDIA_CHECKING";
1305
1306    /**
1307     * Broadcast Action:  External media is present, but is using an incompatible fs (or is blank)
1308     * The path to the mount point for the checking media is contained in the Intent.mData field.
1309     */
1310    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1311    public static final String ACTION_MEDIA_NOFS = "android.intent.action.MEDIA_NOFS";
1312
1313    /**
1314     * Broadcast Action:  External media is present and mounted at its mount point.
1315     * The path to the mount point for the removed media is contained in the Intent.mData field.
1316     * The Intent contains an extra with name "read-only" and Boolean value to indicate if the
1317     * media was mounted read only.
1318     */
1319    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1320    public static final String ACTION_MEDIA_MOUNTED = "android.intent.action.MEDIA_MOUNTED";
1321
1322    /**
1323     * Broadcast Action:  External media is unmounted because it is being shared via USB mass storage.
1324     * The path to the mount point for the removed media is contained in the Intent.mData field.
1325     */
1326    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1327    public static final String ACTION_MEDIA_SHARED = "android.intent.action.MEDIA_SHARED";
1328
1329    /**
1330     * Broadcast Action:  External media was removed from SD card slot, but mount point was not unmounted.
1331     * The path to the mount point for the removed media is contained in the Intent.mData field.
1332     */
1333    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1334    public static final String ACTION_MEDIA_BAD_REMOVAL = "android.intent.action.MEDIA_BAD_REMOVAL";
1335
1336    /**
1337     * Broadcast Action:  External media is present but cannot be mounted.
1338     * The path to the mount point for the removed media is contained in the Intent.mData field.
1339     */
1340    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1341    public static final String ACTION_MEDIA_UNMOUNTABLE = "android.intent.action.MEDIA_UNMOUNTABLE";
1342
1343   /**
1344     * Broadcast Action:  User has expressed the desire to remove the external storage media.
1345     * Applications should close all files they have open within the mount point when they receive this intent.
1346     * The path to the mount point for the media to be ejected is contained in the Intent.mData field.
1347     */
1348    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1349    public static final String ACTION_MEDIA_EJECT = "android.intent.action.MEDIA_EJECT";
1350
1351    /**
1352     * Broadcast Action:  The media scanner has started scanning a directory.
1353     * The path to the directory being scanned is contained in the Intent.mData field.
1354     */
1355    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1356    public static final String ACTION_MEDIA_SCANNER_STARTED = "android.intent.action.MEDIA_SCANNER_STARTED";
1357
1358   /**
1359     * Broadcast Action:  The media scanner has finished scanning a directory.
1360     * The path to the scanned directory is contained in the Intent.mData field.
1361     */
1362    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1363    public static final String ACTION_MEDIA_SCANNER_FINISHED = "android.intent.action.MEDIA_SCANNER_FINISHED";
1364
1365   /**
1366     * Broadcast Action:  Request the media scanner to scan a file and add it to the media database.
1367     * The path to the file is contained in the Intent.mData field.
1368     */
1369    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1370    public static final String ACTION_MEDIA_SCANNER_SCAN_FILE = "android.intent.action.MEDIA_SCANNER_SCAN_FILE";
1371
1372   /**
1373     * Broadcast Action:  The "Media Button" was pressed.  Includes a single
1374     * extra field, {@link #EXTRA_KEY_EVENT}, containing the key event that
1375     * caused the broadcast.
1376     */
1377    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1378    public static final String ACTION_MEDIA_BUTTON = "android.intent.action.MEDIA_BUTTON";
1379
1380    /**
1381     * Broadcast Action:  The "Camera Button" was pressed.  Includes a single
1382     * extra field, {@link #EXTRA_KEY_EVENT}, containing the key event that
1383     * caused the broadcast.
1384     */
1385    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1386    public static final String ACTION_CAMERA_BUTTON = "android.intent.action.CAMERA_BUTTON";
1387
1388    // *** NOTE: @todo(*) The following really should go into a more domain-specific
1389    // location; they are not general-purpose actions.
1390
1391    /**
1392     * Broadcast Action: An GTalk connection has been established.
1393     */
1394    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1395    public static final String ACTION_GTALK_SERVICE_CONNECTED =
1396            "android.intent.action.GTALK_CONNECTED";
1397
1398    /**
1399     * Broadcast Action: An GTalk connection has been disconnected.
1400     */
1401    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1402    public static final String ACTION_GTALK_SERVICE_DISCONNECTED =
1403            "android.intent.action.GTALK_DISCONNECTED";
1404
1405    /**
1406     * Broadcast Action: An input method has been changed.
1407     * {@hide pending API Council approval}
1408     */
1409    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1410    public static final String ACTION_INPUT_METHOD_CHANGED =
1411            "android.intent.action.INPUT_METHOD_CHANGED";
1412
1413    /**
1414     * <p>Broadcast Action: The user has switched the phone into or out of Airplane Mode. One or
1415     * more radios have been turned off or on. The intent will have the following extra value:</p>
1416     * <ul>
1417     *   <li><em>state</em> - A boolean value indicating whether Airplane Mode is on. If true,
1418     *   then cell radio and possibly other radios such as bluetooth or WiFi may have also been
1419     *   turned off</li>
1420     * </ul>
1421     */
1422    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1423    public static final String ACTION_AIRPLANE_MODE_CHANGED = "android.intent.action.AIRPLANE_MODE";
1424
1425    /**
1426     * Broadcast Action: Some content providers have parts of their namespace
1427     * where they publish new events or items that the user may be especially
1428     * interested in. For these things, they may broadcast this action when the
1429     * set of interesting items change.
1430     *
1431     * For example, GmailProvider sends this notification when the set of unread
1432     * mail in the inbox changes.
1433     *
1434     * <p>The data of the intent identifies which part of which provider
1435     * changed. When queried through the content resolver, the data URI will
1436     * return the data set in question.
1437     *
1438     * <p>The intent will have the following extra values:
1439     * <ul>
1440     *   <li><em>count</em> - The number of items in the data set. This is the
1441     *       same as the number of items in the cursor returned by querying the
1442     *       data URI. </li>
1443     * </ul>
1444     *
1445     * This intent will be sent at boot (if the count is non-zero) and when the
1446     * data set changes. It is possible for the data set to change without the
1447     * count changing (for example, if a new unread message arrives in the same
1448     * sync operation in which a message is archived). The phone should still
1449     * ring/vibrate/etc as normal in this case.
1450     */
1451    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1452    public static final String ACTION_PROVIDER_CHANGED =
1453            "android.intent.action.PROVIDER_CHANGED";
1454
1455    /**
1456     * Broadcast Action: Wired Headset plugged in or unplugged.
1457     *
1458     * <p>The intent will have the following extra values:
1459     * <ul>
1460     *   <li><em>state</em> - 0 for unplugged, 1 for plugged. </li>
1461     *   <li><em>name</em> - Headset type, human readable string </li>
1462     * </ul>
1463     * </ul>
1464     */
1465    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1466    public static final String ACTION_HEADSET_PLUG =
1467            "android.intent.action.HEADSET_PLUG";
1468
1469    /**
1470     * Broadcast Action: An outgoing call is about to be placed.
1471     *
1472     * <p>The Intent will have the following extra value:
1473     * <ul>
1474     *   <li><em>{@link android.content.Intent#EXTRA_PHONE_NUMBER}</em> -
1475     *       the phone number originally intended to be dialed.</li>
1476     * </ul>
1477     * <p>Once the broadcast is finished, the resultData is used as the actual
1478     * number to call.  If  <code>null</code>, no call will be placed.</p>
1479     * <p>It is perfectly acceptable for multiple receivers to process the
1480     * outgoing call in turn: for example, a parental control application
1481     * might verify that the user is authorized to place the call at that
1482     * time, then a number-rewriting application might add an area code if
1483     * one was not specified.</p>
1484     * <p>For consistency, any receiver whose purpose is to prohibit phone
1485     * calls should have a priority of 0, to ensure it will see the final
1486     * phone number to be dialed.
1487     * Any receiver whose purpose is to rewrite phone numbers to be called
1488     * should have a positive priority.
1489     * Negative priorities are reserved for the system for this broadcast;
1490     * using them may cause problems.</p>
1491     * <p>Any BroadcastReceiver receiving this Intent <em>must not</em>
1492     * abort the broadcast.</p>
1493     * <p>Emergency calls cannot be intercepted using this mechanism, and
1494     * other calls cannot be modified to call emergency numbers using this
1495     * mechanism.
1496     * <p>You must hold the
1497     * {@link android.Manifest.permission#PROCESS_OUTGOING_CALLS}
1498     * permission to receive this Intent.</p>
1499     */
1500    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1501    public static final String ACTION_NEW_OUTGOING_CALL =
1502            "android.intent.action.NEW_OUTGOING_CALL";
1503
1504    /**
1505     * Broadcast Action: Have the device reboot.  This is only for use by
1506     * system code.
1507     */
1508    @SdkConstant(SdkConstantType.BROADCAST_INTENT_ACTION)
1509    public static final String ACTION_REBOOT =
1510            "android.intent.action.REBOOT";
1511
1512    // ---------------------------------------------------------------------
1513    // ---------------------------------------------------------------------
1514    // Standard intent categories (see addCategory()).
1515
1516    /**
1517     * Set if the activity should be an option for the default action
1518     * (center press) to perform on a piece of data.  Setting this will
1519     * hide from the user any activities without it set when performing an
1520     * action on some data.  Note that this is normal -not- set in the
1521     * Intent when initiating an action -- it is for use in intent filters
1522     * specified in packages.
1523     */
1524    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1525    public static final String CATEGORY_DEFAULT = "android.intent.category.DEFAULT";
1526    /**
1527     * Activities that can be safely invoked from a browser must support this
1528     * category.  For example, if the user is viewing a web page or an e-mail
1529     * and clicks on a link in the text, the Intent generated execute that
1530     * link will require the BROWSABLE category, so that only activities
1531     * supporting this category will be considered as possible actions.  By
1532     * supporting this category, you are promising that there is nothing
1533     * damaging (without user intervention) that can happen by invoking any
1534     * matching Intent.
1535     */
1536    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1537    public static final String CATEGORY_BROWSABLE = "android.intent.category.BROWSABLE";
1538    /**
1539     * Set if the activity should be considered as an alternative action to
1540     * the data the user is currently viewing.  See also
1541     * {@link #CATEGORY_SELECTED_ALTERNATIVE} for an alternative action that
1542     * applies to the selection in a list of items.
1543     *
1544     * <p>Supporting this category means that you would like your activity to be
1545     * displayed in the set of alternative things the user can do, usually as
1546     * part of the current activity's options menu.  You will usually want to
1547     * include a specific label in the &lt;intent-filter&gt; of this action
1548     * describing to the user what it does.
1549     *
1550     * <p>The action of IntentFilter with this category is important in that it
1551     * describes the specific action the target will perform.  This generally
1552     * should not be a generic action (such as {@link #ACTION_VIEW}, but rather
1553     * a specific name such as "com.android.camera.action.CROP.  Only one
1554     * alternative of any particular action will be shown to the user, so using
1555     * a specific action like this makes sure that your alternative will be
1556     * displayed while also allowing other applications to provide their own
1557     * overrides of that particular action.
1558     */
1559    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1560    public static final String CATEGORY_ALTERNATIVE = "android.intent.category.ALTERNATIVE";
1561    /**
1562     * Set if the activity should be considered as an alternative selection
1563     * action to the data the user has currently selected.  This is like
1564     * {@link #CATEGORY_ALTERNATIVE}, but is used in activities showing a list
1565     * of items from which the user can select, giving them alternatives to the
1566     * default action that will be performed on it.
1567     */
1568    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1569    public static final String CATEGORY_SELECTED_ALTERNATIVE = "android.intent.category.SELECTED_ALTERNATIVE";
1570    /**
1571     * Intended to be used as a tab inside of an containing TabActivity.
1572     */
1573    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1574    public static final String CATEGORY_TAB = "android.intent.category.TAB";
1575    /**
1576     * Should be displayed in the top-level launcher.
1577     */
1578    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1579    public static final String CATEGORY_LAUNCHER = "android.intent.category.LAUNCHER";
1580    /**
1581     * Provides information about the package it is in; typically used if
1582     * a package does not contain a {@link #CATEGORY_LAUNCHER} to provide
1583     * a front-door to the user without having to be shown in the all apps list.
1584     */
1585    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1586    public static final String CATEGORY_INFO = "android.intent.category.INFO";
1587    /**
1588     * This is the home activity, that is the first activity that is displayed
1589     * when the device boots.
1590     */
1591    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1592    public static final String CATEGORY_HOME = "android.intent.category.HOME";
1593    /**
1594     * This activity is a preference panel.
1595     */
1596    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1597    public static final String CATEGORY_PREFERENCE = "android.intent.category.PREFERENCE";
1598    /**
1599     * This activity is a development preference panel.
1600     */
1601    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1602    public static final String CATEGORY_DEVELOPMENT_PREFERENCE = "android.intent.category.DEVELOPMENT_PREFERENCE";
1603    /**
1604     * Capable of running inside a parent activity container.
1605     */
1606    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1607    public static final String CATEGORY_EMBED = "android.intent.category.EMBED";
1608    /**
1609     * This activity may be exercised by the monkey or other automated test tools.
1610     */
1611    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1612    public static final String CATEGORY_MONKEY = "android.intent.category.MONKEY";
1613    /**
1614     * To be used as a test (not part of the normal user experience).
1615     */
1616    public static final String CATEGORY_TEST = "android.intent.category.TEST";
1617    /**
1618     * To be used as a unit test (run through the Test Harness).
1619     */
1620    public static final String CATEGORY_UNIT_TEST = "android.intent.category.UNIT_TEST";
1621    /**
1622     * To be used as an sample code example (not part of the normal user
1623     * experience).
1624     */
1625    public static final String CATEGORY_SAMPLE_CODE = "android.intent.category.SAMPLE_CODE";
1626    /**
1627     * Used to indicate that a GET_CONTENT intent only wants URIs that can be opened with
1628     * ContentResolver.openInputStream. Openable URIs must support the columns in OpenableColumns
1629     * when queried, though it is allowable for those columns to be blank.
1630     */
1631    @SdkConstant(SdkConstantType.INTENT_CATEGORY)
1632    public static final String CATEGORY_OPENABLE = "android.intent.category.OPENABLE";
1633
1634    /**
1635     * To be used as code under test for framework instrumentation tests.
1636     */
1637    public static final String CATEGORY_FRAMEWORK_INSTRUMENTATION_TEST =
1638            "android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST";
1639    // ---------------------------------------------------------------------
1640    // ---------------------------------------------------------------------
1641    // Standard extra data keys.
1642
1643    /**
1644     * The initial data to place in a newly created record.  Use with
1645     * {@link #ACTION_INSERT}.  The data here is a Map containing the same
1646     * fields as would be given to the underlying ContentProvider.insert()
1647     * call.
1648     */
1649    public static final String EXTRA_TEMPLATE = "android.intent.extra.TEMPLATE";
1650
1651    /**
1652     * A constant CharSequence that is associated with the Intent, used with
1653     * {@link #ACTION_SEND} to supply the literal data to be sent.  Note that
1654     * this may be a styled CharSequence, so you must use
1655     * {@link Bundle#getCharSequence(String) Bundle.getCharSequence()} to
1656     * retrieve it.
1657     */
1658    public static final String EXTRA_TEXT = "android.intent.extra.TEXT";
1659
1660    /**
1661     * A content: URI holding a stream of data associated with the Intent,
1662     * used with {@link #ACTION_SEND} to supply the data being sent.
1663     */
1664    public static final String EXTRA_STREAM = "android.intent.extra.STREAM";
1665
1666    /**
1667     * A String[] holding e-mail addresses that should be delivered to.
1668     */
1669    public static final String EXTRA_EMAIL       = "android.intent.extra.EMAIL";
1670
1671    /**
1672     * A String[] holding e-mail addresses that should be carbon copied.
1673     */
1674    public static final String EXTRA_CC       = "android.intent.extra.CC";
1675
1676    /**
1677     * A String[] holding e-mail addresses that should be blind carbon copied.
1678     */
1679    public static final String EXTRA_BCC      = "android.intent.extra.BCC";
1680
1681    /**
1682     * A constant string holding the desired subject line of a message.
1683     */
1684    public static final String EXTRA_SUBJECT  = "android.intent.extra.SUBJECT";
1685
1686    /**
1687     * An Intent describing the choices you would like shown with
1688     * {@link #ACTION_PICK_ACTIVITY}.
1689     */
1690    public static final String EXTRA_INTENT = "android.intent.extra.INTENT";
1691
1692    /**
1693     * A CharSequence dialog title to provide to the user when used with a
1694     * {@link #ACTION_CHOOSER}.
1695     */
1696    public static final String EXTRA_TITLE = "android.intent.extra.TITLE";
1697
1698    /**
1699     * A {@link android.view.KeyEvent} object containing the event that
1700     * triggered the creation of the Intent it is in.
1701     */
1702    public static final String EXTRA_KEY_EVENT = "android.intent.extra.KEY_EVENT";
1703
1704    /**
1705     * Used as an boolean extra field in {@link android.content.Intent#ACTION_PACKAGE_REMOVED} or
1706     * {@link android.content.Intent#ACTION_PACKAGE_CHANGED} intents to override the default action
1707     * of restarting the application.
1708     */
1709    public static final String EXTRA_DONT_KILL_APP = "android.intent.extra.DONT_KILL_APP";
1710
1711    /**
1712     * A String holding the phone number originally entered in
1713     * {@link android.content.Intent#ACTION_NEW_OUTGOING_CALL}, or the actual
1714     * number to call in a {@link android.content.Intent#ACTION_CALL}.
1715     */
1716    public static final String EXTRA_PHONE_NUMBER = "android.intent.extra.PHONE_NUMBER";
1717    /**
1718     * Used as an int extra field in {@link android.content.Intent#ACTION_UID_REMOVED}
1719     * intents to supply the uid the package had been assigned.  Also an optional
1720     * extra in {@link android.content.Intent#ACTION_PACKAGE_REMOVED} or
1721     * {@link android.content.Intent#ACTION_PACKAGE_CHANGED} for the same
1722     * purpose.
1723     */
1724    public static final String EXTRA_UID = "android.intent.extra.UID";
1725
1726    /**
1727     * Used as a boolean extra field in {@link android.content.Intent#ACTION_PACKAGE_REMOVED}
1728     * intents to indicate whether this represents a full uninstall (removing
1729     * both the code and its data) or a partial uninstall (leaving its data,
1730     * implying that this is an update).
1731     */
1732    public static final String EXTRA_DATA_REMOVED = "android.intent.extra.DATA_REMOVED";
1733
1734    /**
1735     * Used as a boolean extra field in {@link android.content.Intent#ACTION_PACKAGE_REMOVED}
1736     * intents to indicate that this is a replacement of the package, so this
1737     * broadcast will immediately be followed by an add broadcast for a
1738     * different version of the same package.
1739     */
1740    public static final String EXTRA_REPLACING = "android.intent.extra.REPLACING";
1741
1742    /**
1743     * Used as an int extra field in {@link android.app.AlarmManager} intents
1744     * to tell the application being invoked how many pending alarms are being
1745     * delievered with the intent.  For one-shot alarms this will always be 1.
1746     * For recurring alarms, this might be greater than 1 if the device was
1747     * asleep or powered off at the time an earlier alarm would have been
1748     * delivered.
1749     */
1750    public static final String EXTRA_ALARM_COUNT = "android.intent.extra.ALARM_COUNT";
1751
1752    /**
1753     * Used as an int extra field in {@link android.content.Intent#ACTION_VOICE_COMMAND}
1754     * intents to request which audio route the voice command should prefer.
1755     * The value should be a route from {@link android.media.AudioManager}, for
1756     * example ROUTE_BLUETOOTH_SCO. Providing this value is optional.
1757     * {@hide pending API Council approval}
1758     */
1759    public static final String EXTRA_AUDIO_ROUTE = "android.intent.extra.AUDIO_ROUTE";
1760
1761    // ---------------------------------------------------------------------
1762    // ---------------------------------------------------------------------
1763    // Intent flags (see mFlags variable).
1764
1765    /**
1766     * If set, the recipient of this Intent will be granted permission to
1767     * perform read operations on the Uri in the Intent's data.
1768     */
1769    public static final int FLAG_GRANT_READ_URI_PERMISSION = 0x00000001;
1770    /**
1771     * If set, the recipient of this Intent will be granted permission to
1772     * perform write operations on the Uri in the Intent's data.
1773     */
1774    public static final int FLAG_GRANT_WRITE_URI_PERMISSION = 0x00000002;
1775    /**
1776     * Can be set by the caller to indicate that this Intent is coming from
1777     * a background operation, not from direct user interaction.
1778     */
1779    public static final int FLAG_FROM_BACKGROUND = 0x00000004;
1780    /**
1781     * A flag you can enable for debugging: when set, log messages will be
1782     * printed during the resolution of this intent to show you what has
1783     * been found to create the final resolved list.
1784     */
1785    public static final int FLAG_DEBUG_LOG_RESOLUTION = 0x00000008;
1786
1787    /**
1788     * If set, the new activity is not kept in the history stack.  As soon as
1789     * the user navigates away from it, the activity is finished.  This may also
1790     * be set with the {@link android.R.styleable#AndroidManifestActivity_noHistory
1791     * noHistory} attribute.
1792     */
1793    public static final int FLAG_ACTIVITY_NO_HISTORY = 0x40000000;
1794    /**
1795     * If set, the activity will not be launched if it is already running
1796     * at the top of the history stack.
1797     */
1798    public static final int FLAG_ACTIVITY_SINGLE_TOP = 0x20000000;
1799    /**
1800     * If set, this activity will become the start of a new task on this
1801     * history stack.  A task (from the activity that started it to the
1802     * next task activity) defines an atomic group of activities that the
1803     * user can move to.  Tasks can be moved to the foreground and background;
1804     * all of the activities inside of a particular task always remain in
1805     * the same order.  See
1806     * <a href="{@docRoot}guide/topics/fundamentals.html#acttask">Application Fundamentals:
1807     * Activities and Tasks</a> for more details on tasks.
1808     *
1809     * <p>This flag is generally used by activities that want
1810     * to present a "launcher" style behavior: they give the user a list of
1811     * separate things that can be done, which otherwise run completely
1812     * independently of the activity launching them.
1813     *
1814     * <p>When using this flag, if a task is already running for the activity
1815     * you are now starting, then a new activity will not be started; instead,
1816     * the current task will simply be brought to the front of the screen with
1817     * the state it was last in.  See {@link #FLAG_ACTIVITY_MULTIPLE_TASK} for a flag
1818     * to disable this behavior.
1819     *
1820     * <p>This flag can not be used when the caller is requesting a result from
1821     * the activity being launched.
1822     */
1823    public static final int FLAG_ACTIVITY_NEW_TASK = 0x10000000;
1824    /**
1825     * <strong>Do not use this flag unless you are implementing your own
1826     * top-level application launcher.</strong>  Used in conjunction with
1827     * {@link #FLAG_ACTIVITY_NEW_TASK} to disable the
1828     * behavior of bringing an existing task to the foreground.  When set,
1829     * a new task is <em>always</em> started to host the Activity for the
1830     * Intent, regardless of whether there is already an existing task running
1831     * the same thing.
1832     *
1833     * <p><strong>Because the default system does not include graphical task management,
1834     * you should not use this flag unless you provide some way for a user to
1835     * return back to the tasks you have launched.</strong>
1836     *
1837     * <p>This flag is ignored if
1838     * {@link #FLAG_ACTIVITY_NEW_TASK} is not set.
1839     *
1840     * <p>See <a href="{@docRoot}guide/topics/fundamentals.html#acttask">Application Fundamentals:
1841     * Activities and Tasks</a> for more details on tasks.
1842     */
1843    public static final int FLAG_ACTIVITY_MULTIPLE_TASK = 0x08000000;
1844    /**
1845     * If set, and the activity being launched is already running in the
1846     * current task, then instead of launching a new instance of that activity,
1847     * all of the other activities on top of it will be closed and this Intent
1848     * will be delivered to the (now on top) old activity as a new Intent.
1849     *
1850     * <p>For example, consider a task consisting of the activities: A, B, C, D.
1851     * If D calls startActivity() with an Intent that resolves to the component
1852     * of activity B, then C and D will be finished and B receive the given
1853     * Intent, resulting in the stack now being: A, B.
1854     *
1855     * <p>The currently running instance of task B in the above example will
1856     * either receive the new intent you are starting here in its
1857     * onNewIntent() method, or be itself finished and restarted with the
1858     * new intent.  If it has declared its launch mode to be "multiple" (the
1859     * default) it will be finished and re-created; for all other launch modes
1860     * it will receive the Intent in the current instance.
1861     *
1862     * <p>This launch mode can also be used to good effect in conjunction with
1863     * {@link #FLAG_ACTIVITY_NEW_TASK}: if used to start the root activity
1864     * of a task, it will bring any currently running instance of that task
1865     * to the foreground, and then clear it to its root state.  This is
1866     * especially useful, for example, when launching an activity from the
1867     * notification manager.
1868     *
1869     * <p>See <a href="{@docRoot}guide/topics/fundamentals.html#acttask">Application Fundamentals:
1870     * Activities and Tasks</a> for more details on tasks.
1871     */
1872    public static final int FLAG_ACTIVITY_CLEAR_TOP = 0x04000000;
1873    /**
1874     * If set and this intent is being used to launch a new activity from an
1875     * existing one, then the reply target of the existing activity will be
1876     * transfered to the new activity.  This way the new activity can call
1877     * {@link android.app.Activity#setResult} and have that result sent back to
1878     * the reply target of the original activity.
1879     */
1880    public static final int FLAG_ACTIVITY_FORWARD_RESULT = 0x02000000;
1881    /**
1882     * If set and this intent is being used to launch a new activity from an
1883     * existing one, the current activity will not be counted as the top
1884     * activity for deciding whether the new intent should be delivered to
1885     * the top instead of starting a new one.  The previous activity will
1886     * be used as the top, with the assumption being that the current activity
1887     * will finish itself immediately.
1888     */
1889    public static final int FLAG_ACTIVITY_PREVIOUS_IS_TOP = 0x01000000;
1890    /**
1891     * If set, the new activity is not kept in the list of recently launched
1892     * activities.
1893     */
1894    public static final int FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS = 0x00800000;
1895    /**
1896     * This flag is not normally set by application code, but set for you by
1897     * the system as described in the
1898     * {@link android.R.styleable#AndroidManifestActivity_launchMode
1899     * launchMode} documentation for the singleTask mode.
1900     */
1901    public static final int FLAG_ACTIVITY_BROUGHT_TO_FRONT = 0x00400000;
1902    /**
1903     * If set, and this activity is either being started in a new task or
1904     * bringing to the top an existing task, then it will be launched as
1905     * the front door of the task.  This will result in the application of
1906     * any affinities needed to have that task in the proper state (either
1907     * moving activities to or from it), or simply resetting that task to
1908     * its initial state if needed.
1909     */
1910    public static final int FLAG_ACTIVITY_RESET_TASK_IF_NEEDED = 0x00200000;
1911    /**
1912     * This flag is not normally set by application code, but set for you by
1913     * the system if this activity is being launched from history
1914     * (longpress home key).
1915     */
1916    public static final int FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY = 0x00100000;
1917    /**
1918     * If set, this marks a point in the task's activity stack that should
1919     * be cleared when the task is reset.  That is, the next time the task
1920     * is broad to the foreground with
1921     * {@link #FLAG_ACTIVITY_RESET_TASK_IF_NEEDED} (typically as a result of
1922     * the user re-launching it from home), this activity and all on top of
1923     * it will be finished so that the user does not return to them, but
1924     * instead returns to whatever activity preceeded it.
1925     *
1926     * <p>This is useful for cases where you have a logical break in your
1927     * application.  For example, an e-mail application may have a command
1928     * to view an attachment, which launches an image view activity to
1929     * display it.  This activity should be part of the e-mail application's
1930     * task, since it is a part of the task the user is involved in.  However,
1931     * if the user leaves that task, and later selects the e-mail app from
1932     * home, we may like them to return to the conversation they were
1933     * viewing, not the picture attachment, since that is confusing.  By
1934     * setting this flag when launching the image viewer, that viewer and
1935     * any activities it starts will be removed the next time the user returns
1936     * to mail.
1937     */
1938    public static final int FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET = 0x00080000;
1939    /**
1940     * If set, this flag will prevent the normal {@link android.app.Activity#onUserLeaveHint}
1941     * callback from occurring on the current frontmost activity before it is
1942     * paused as the newly-started activity is brought to the front.
1943     *
1944     * <p>Typically, an activity can rely on that callback to indicate that an
1945     * explicit user action has caused their activity to be moved out of the
1946     * foreground. The callback marks an appropriate point in the activity's
1947     * lifecycle for it to dismiss any notifications that it intends to display
1948     * "until the user has seen them," such as a blinking LED.
1949     *
1950     * <p>If an activity is ever started via any non-user-driven events such as
1951     * phone-call receipt or an alarm handler, this flag should be passed to {@link
1952     * Context#startActivity Context.startActivity}, ensuring that the pausing
1953     * activity does not think the user has acknowledged its notification.
1954     */
1955    public static final int FLAG_ACTIVITY_NO_USER_ACTION = 0x00040000;
1956    /**
1957     * If set in an Intent passed to {@link Context#startActivity Context.startActivity()},
1958     * this flag will cause the launched activity to be brought to the front of its
1959     * task's history stack if it is already running.
1960     *
1961     * <p>For example, consider a task consisting of four activities: A, B, C, D.
1962     * If D calls startActivity() with an Intent that resolves to the component
1963     * of activity B, then B will be brought to the front of the history stack,
1964     * with this resulting order:  A, C, D, B.
1965     *
1966     * This flag will be ignored if {@link #FLAG_ACTIVITY_CLEAR_TOP} is also
1967     * specified.
1968     */
1969    public static final int FLAG_ACTIVITY_REORDER_TO_FRONT = 0X00020000;
1970    /**
1971     * If set, when sending a broadcast only registered receivers will be
1972     * called -- no BroadcastReceiver components will be launched.
1973     */
1974    public static final int FLAG_RECEIVER_REGISTERED_ONLY = 0x40000000;
1975    /**
1976     * If set, when sending a broadcast <i>before boot has completed</i> only
1977     * registered receivers will be called -- no BroadcastReceiver components
1978     * will be launched.  Sticky intent state will be recorded properly even
1979     * if no receivers wind up being called.  If {@link #FLAG_RECEIVER_REGISTERED_ONLY}
1980     * is specified in the broadcast intent, this flag is unnecessary.
1981     *
1982     * <p>This flag is only for use by system sevices as a convenience to
1983     * avoid having to implement a more complex mechanism around detection
1984     * of boot completion.
1985     *
1986     * @hide
1987     */
1988    public static final int FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT = 0x20000000;
1989
1990    // ---------------------------------------------------------------------
1991
1992    private String mAction;
1993    private Uri mData;
1994    private String mType;
1995    private ComponentName mComponent;
1996    private int mFlags;
1997    private HashSet<String> mCategories;
1998    private Bundle mExtras;
1999
2000    // ---------------------------------------------------------------------
2001
2002    /**
2003     * Create an empty intent.
2004     */
2005    public Intent() {
2006    }
2007
2008    /**
2009     * Copy constructor.
2010     */
2011    public Intent(Intent o) {
2012        this.mAction = o.mAction;
2013        this.mData = o.mData;
2014        this.mType = o.mType;
2015        this.mComponent = o.mComponent;
2016        this.mFlags = o.mFlags;
2017        if (o.mCategories != null) {
2018            this.mCategories = new HashSet<String>(o.mCategories);
2019        }
2020        if (o.mExtras != null) {
2021            this.mExtras = new Bundle(o.mExtras);
2022        }
2023    }
2024
2025    @Override
2026    public Object clone() {
2027        return new Intent(this);
2028    }
2029
2030    private Intent(Intent o, boolean all) {
2031        this.mAction = o.mAction;
2032        this.mData = o.mData;
2033        this.mType = o.mType;
2034        this.mComponent = o.mComponent;
2035        if (o.mCategories != null) {
2036            this.mCategories = new HashSet<String>(o.mCategories);
2037        }
2038    }
2039
2040    /**
2041     * Make a clone of only the parts of the Intent that are relevant for
2042     * filter matching: the action, data, type, component, and categories.
2043     */
2044    public Intent cloneFilter() {
2045        return new Intent(this, false);
2046    }
2047
2048    /**
2049     * Create an intent with a given action.  All other fields (data, type,
2050     * class) are null.  Note that the action <em>must</em> be in a
2051     * namespace because Intents are used globally in the system -- for
2052     * example the system VIEW action is android.intent.action.VIEW; an
2053     * application's custom action would be something like
2054     * com.google.app.myapp.CUSTOM_ACTION.
2055     *
2056     * @param action The Intent action, such as ACTION_VIEW.
2057     */
2058    public Intent(String action) {
2059        mAction = action;
2060    }
2061
2062    /**
2063     * Create an intent with a given action and for a given data url.  Note
2064     * that the action <em>must</em> be in a namespace because Intents are
2065     * used globally in the system -- for example the system VIEW action is
2066     * android.intent.action.VIEW; an application's custom action would be
2067     * something like com.google.app.myapp.CUSTOM_ACTION.
2068     *
2069     * @param action The Intent action, such as ACTION_VIEW.
2070     * @param uri The Intent data URI.
2071     */
2072    public Intent(String action, Uri uri) {
2073        mAction = action;
2074        mData = uri;
2075    }
2076
2077    /**
2078     * Create an intent for a specific component.  All other fields (action, data,
2079     * type, class) are null, though they can be modified later with explicit
2080     * calls.  This provides a convenient way to create an intent that is
2081     * intended to execute a hard-coded class name, rather than relying on the
2082     * system to find an appropriate class for you; see {@link #setComponent}
2083     * for more information on the repercussions of this.
2084     *
2085     * @param packageContext A Context of the application package implementing
2086     * this class.
2087     * @param cls The component class that is to be used for the intent.
2088     *
2089     * @see #setClass
2090     * @see #setComponent
2091     * @see #Intent(String, android.net.Uri , Context, Class)
2092     */
2093    public Intent(Context packageContext, Class<?> cls) {
2094        mComponent = new ComponentName(packageContext, cls);
2095    }
2096
2097    /**
2098     * Create an intent for a specific component with a specified action and data.
2099     * This is equivalent using {@link #Intent(String, android.net.Uri)} to
2100     * construct the Intent and then calling {@link #setClass} to set its
2101     * class.
2102     *
2103     * @param action The Intent action, such as ACTION_VIEW.
2104     * @param uri The Intent data URI.
2105     * @param packageContext A Context of the application package implementing
2106     * this class.
2107     * @param cls The component class that is to be used for the intent.
2108     *
2109     * @see #Intent(String, android.net.Uri)
2110     * @see #Intent(Context, Class)
2111     * @see #setClass
2112     * @see #setComponent
2113     */
2114    public Intent(String action, Uri uri,
2115            Context packageContext, Class<?> cls) {
2116        mAction = action;
2117        mData = uri;
2118        mComponent = new ComponentName(packageContext, cls);
2119    }
2120
2121    /**
2122     * Create an intent from a URI.  This URI may encode the action,
2123     * category, and other intent fields, if it was returned by toURI().  If
2124     * the Intent was not generate by toURI(), its data will be the entire URI
2125     * and its action will be ACTION_VIEW.
2126     *
2127     * <p>The URI given here must not be relative -- that is, it must include
2128     * the scheme and full path.
2129     *
2130     * @param uri The URI to turn into an Intent.
2131     *
2132     * @return Intent The newly created Intent object.
2133     *
2134     * @see #toURI
2135     */
2136    public static Intent getIntent(String uri) throws URISyntaxException {
2137        int i = 0;
2138        try {
2139            // simple case
2140            i = uri.lastIndexOf("#");
2141            if (i == -1) return new Intent(ACTION_VIEW, Uri.parse(uri));
2142
2143            // old format Intent URI
2144            if (!uri.startsWith("#Intent;", i)) return getIntentOld(uri);
2145
2146            // new format
2147            Intent intent = new Intent(ACTION_VIEW);
2148
2149            // fetch data part, if present
2150            if (i > 0) {
2151                intent.mData = Uri.parse(uri.substring(0, i));
2152            }
2153            i += "#Intent;".length();
2154
2155            // loop over contents of Intent, all name=value;
2156            while (!uri.startsWith("end", i)) {
2157                int eq = uri.indexOf('=', i);
2158                int semi = uri.indexOf(';', eq);
2159                String value = uri.substring(eq + 1, semi);
2160
2161                // action
2162                if (uri.startsWith("action=", i)) {
2163                    intent.mAction = value;
2164                }
2165
2166                // categories
2167                else if (uri.startsWith("category=", i)) {
2168                    intent.addCategory(value);
2169                }
2170
2171                // type
2172                else if (uri.startsWith("type=", i)) {
2173                    intent.mType = value;
2174                }
2175
2176                // launch  flags
2177                else if (uri.startsWith("launchFlags=", i)) {
2178                    intent.mFlags = Integer.decode(value).intValue();
2179                }
2180
2181                // component
2182                else if (uri.startsWith("component=", i)) {
2183                    intent.mComponent = ComponentName.unflattenFromString(value);
2184                }
2185
2186                // extra
2187                else {
2188                    String key = Uri.decode(uri.substring(i + 2, eq));
2189                    value = Uri.decode(value);
2190                    // create Bundle if it doesn't already exist
2191                    if (intent.mExtras == null) intent.mExtras = new Bundle();
2192                    Bundle b = intent.mExtras;
2193                    // add EXTRA
2194                    if      (uri.startsWith("S.", i)) b.putString(key, value);
2195                    else if (uri.startsWith("B.", i)) b.putBoolean(key, Boolean.parseBoolean(value));
2196                    else if (uri.startsWith("b.", i)) b.putByte(key, Byte.parseByte(value));
2197                    else if (uri.startsWith("c.", i)) b.putChar(key, value.charAt(0));
2198                    else if (uri.startsWith("d.", i)) b.putDouble(key, Double.parseDouble(value));
2199                    else if (uri.startsWith("f.", i)) b.putFloat(key, Float.parseFloat(value));
2200                    else if (uri.startsWith("i.", i)) b.putInt(key, Integer.parseInt(value));
2201                    else if (uri.startsWith("l.", i)) b.putLong(key, Long.parseLong(value));
2202                    else if (uri.startsWith("s.", i)) b.putShort(key, Short.parseShort(value));
2203                    else throw new URISyntaxException(uri, "unknown EXTRA type", i);
2204                }
2205
2206                // move to the next item
2207                i = semi + 1;
2208            }
2209
2210            return intent;
2211
2212        } catch (IndexOutOfBoundsException e) {
2213            throw new URISyntaxException(uri, "illegal Intent URI format", i);
2214        }
2215    }
2216
2217    public static Intent getIntentOld(String uri) throws URISyntaxException {
2218        Intent intent;
2219
2220        int i = uri.lastIndexOf('#');
2221        if (i >= 0) {
2222            Uri data = null;
2223            String action = null;
2224            if (i > 0) {
2225                data = Uri.parse(uri.substring(0, i));
2226            }
2227
2228            i++;
2229
2230            if (uri.regionMatches(i, "action(", 0, 7)) {
2231                i += 7;
2232                int j = uri.indexOf(')', i);
2233                action = uri.substring(i, j);
2234                i = j + 1;
2235            }
2236
2237            intent = new Intent(action, data);
2238
2239            if (uri.regionMatches(i, "categories(", 0, 11)) {
2240                i += 11;
2241                int j = uri.indexOf(')', i);
2242                while (i < j) {
2243                    int sep = uri.indexOf('!', i);
2244                    if (sep < 0) sep = j;
2245                    if (i < sep) {
2246                        intent.addCategory(uri.substring(i, sep));
2247                    }
2248                    i = sep + 1;
2249                }
2250                i = j + 1;
2251            }
2252
2253            if (uri.regionMatches(i, "type(", 0, 5)) {
2254                i += 5;
2255                int j = uri.indexOf(')', i);
2256                intent.mType = uri.substring(i, j);
2257                i = j + 1;
2258            }
2259
2260            if (uri.regionMatches(i, "launchFlags(", 0, 12)) {
2261                i += 12;
2262                int j = uri.indexOf(')', i);
2263                intent.mFlags = Integer.decode(uri.substring(i, j)).intValue();
2264                i = j + 1;
2265            }
2266
2267            if (uri.regionMatches(i, "component(", 0, 10)) {
2268                i += 10;
2269                int j = uri.indexOf(')', i);
2270                int sep = uri.indexOf('!', i);
2271                if (sep >= 0 && sep < j) {
2272                    String pkg = uri.substring(i, sep);
2273                    String cls = uri.substring(sep + 1, j);
2274                    intent.mComponent = new ComponentName(pkg, cls);
2275                }
2276                i = j + 1;
2277            }
2278
2279            if (uri.regionMatches(i, "extras(", 0, 7)) {
2280                i += 7;
2281
2282                final int closeParen = uri.indexOf(')', i);
2283                if (closeParen == -1) throw new URISyntaxException(uri,
2284                        "EXTRA missing trailing ')'", i);
2285
2286                while (i < closeParen) {
2287                    // fetch the key value
2288                    int j = uri.indexOf('=', i);
2289                    if (j <= i + 1 || i >= closeParen) {
2290                        throw new URISyntaxException(uri, "EXTRA missing '='", i);
2291                    }
2292                    char type = uri.charAt(i);
2293                    i++;
2294                    String key = uri.substring(i, j);
2295                    i = j + 1;
2296
2297                    // get type-value
2298                    j = uri.indexOf('!', i);
2299                    if (j == -1 || j >= closeParen) j = closeParen;
2300                    if (i >= j) throw new URISyntaxException(uri, "EXTRA missing '!'", i);
2301                    String value = uri.substring(i, j);
2302                    i = j;
2303
2304                    // create Bundle if it doesn't already exist
2305                    if (intent.mExtras == null) intent.mExtras = new Bundle();
2306
2307                    // add item to bundle
2308                    try {
2309                        switch (type) {
2310                            case 'S':
2311                                intent.mExtras.putString(key, Uri.decode(value));
2312                                break;
2313                            case 'B':
2314                                intent.mExtras.putBoolean(key, Boolean.parseBoolean(value));
2315                                break;
2316                            case 'b':
2317                                intent.mExtras.putByte(key, Byte.parseByte(value));
2318                                break;
2319                            case 'c':
2320                                intent.mExtras.putChar(key, Uri.decode(value).charAt(0));
2321                                break;
2322                            case 'd':
2323                                intent.mExtras.putDouble(key, Double.parseDouble(value));
2324                                break;
2325                            case 'f':
2326                                intent.mExtras.putFloat(key, Float.parseFloat(value));
2327                                break;
2328                            case 'i':
2329                                intent.mExtras.putInt(key, Integer.parseInt(value));
2330                                break;
2331                            case 'l':
2332                                intent.mExtras.putLong(key, Long.parseLong(value));
2333                                break;
2334                            case 's':
2335                                intent.mExtras.putShort(key, Short.parseShort(value));
2336                                break;
2337                            default:
2338                                throw new URISyntaxException(uri, "EXTRA has unknown type", i);
2339                        }
2340                    } catch (NumberFormatException e) {
2341                        throw new URISyntaxException(uri, "EXTRA value can't be parsed", i);
2342                    }
2343
2344                    char ch = uri.charAt(i);
2345                    if (ch == ')') break;
2346                    if (ch != '!') throw new URISyntaxException(uri, "EXTRA missing '!'", i);
2347                    i++;
2348                }
2349            }
2350
2351            if (intent.mAction == null) {
2352                // By default, if no action is specified, then use VIEW.
2353                intent.mAction = ACTION_VIEW;
2354            }
2355
2356        } else {
2357            intent = new Intent(ACTION_VIEW, Uri.parse(uri));
2358        }
2359
2360        return intent;
2361    }
2362
2363    /**
2364     * Retrieve the general action to be performed, such as
2365     * {@link #ACTION_VIEW}.  The action describes the general way the rest of
2366     * the information in the intent should be interpreted -- most importantly,
2367     * what to do with the data returned by {@link #getData}.
2368     *
2369     * @return The action of this intent or null if none is specified.
2370     *
2371     * @see #setAction
2372     */
2373    public String getAction() {
2374        return mAction;
2375    }
2376
2377    /**
2378     * Retrieve data this intent is operating on.  This URI specifies the name
2379     * of the data; often it uses the content: scheme, specifying data in a
2380     * content provider.  Other schemes may be handled by specific activities,
2381     * such as http: by the web browser.
2382     *
2383     * @return The URI of the data this intent is targeting or null.
2384     *
2385     * @see #getScheme
2386     * @see #setData
2387     */
2388    public Uri getData() {
2389        return mData;
2390    }
2391
2392    /**
2393     * The same as {@link #getData()}, but returns the URI as an encoded
2394     * String.
2395     */
2396    public String getDataString() {
2397        return mData != null ? mData.toString() : null;
2398    }
2399
2400    /**
2401     * Return the scheme portion of the intent's data.  If the data is null or
2402     * does not include a scheme, null is returned.  Otherwise, the scheme
2403     * prefix without the final ':' is returned, i.e. "http".
2404     *
2405     * <p>This is the same as calling getData().getScheme() (and checking for
2406     * null data).
2407     *
2408     * @return The scheme of this intent.
2409     *
2410     * @see #getData
2411     */
2412    public String getScheme() {
2413        return mData != null ? mData.getScheme() : null;
2414    }
2415
2416    /**
2417     * Retrieve any explicit MIME type included in the intent.  This is usually
2418     * null, as the type is determined by the intent data.
2419     *
2420     * @return If a type was manually set, it is returned; else null is
2421     *         returned.
2422     *
2423     * @see #resolveType(ContentResolver)
2424     * @see #setType
2425     */
2426    public String getType() {
2427        return mType;
2428    }
2429
2430    /**
2431     * Return the MIME data type of this intent.  If the type field is
2432     * explicitly set, that is simply returned.  Otherwise, if the data is set,
2433     * the type of that data is returned.  If neither fields are set, a null is
2434     * returned.
2435     *
2436     * @return The MIME type of this intent.
2437     *
2438     * @see #getType
2439     * @see #resolveType(ContentResolver)
2440     */
2441    public String resolveType(Context context) {
2442        return resolveType(context.getContentResolver());
2443    }
2444
2445    /**
2446     * Return the MIME data type of this intent.  If the type field is
2447     * explicitly set, that is simply returned.  Otherwise, if the data is set,
2448     * the type of that data is returned.  If neither fields are set, a null is
2449     * returned.
2450     *
2451     * @param resolver A ContentResolver that can be used to determine the MIME
2452     *                 type of the intent's data.
2453     *
2454     * @return The MIME type of this intent.
2455     *
2456     * @see #getType
2457     * @see #resolveType(Context)
2458     */
2459    public String resolveType(ContentResolver resolver) {
2460        if (mType != null) {
2461            return mType;
2462        }
2463        if (mData != null) {
2464            if ("content".equals(mData.getScheme())) {
2465                return resolver.getType(mData);
2466            }
2467        }
2468        return null;
2469    }
2470
2471    /**
2472     * Return the MIME data type of this intent, only if it will be needed for
2473     * intent resolution.  This is not generally useful for application code;
2474     * it is used by the frameworks for communicating with back-end system
2475     * services.
2476     *
2477     * @param resolver A ContentResolver that can be used to determine the MIME
2478     *                 type of the intent's data.
2479     *
2480     * @return The MIME type of this intent, or null if it is unknown or not
2481     *         needed.
2482     */
2483    public String resolveTypeIfNeeded(ContentResolver resolver) {
2484        if (mComponent != null) {
2485            return mType;
2486        }
2487        return resolveType(resolver);
2488    }
2489
2490    /**
2491     * Check if an category exists in the intent.
2492     *
2493     * @param category The category to check.
2494     *
2495     * @return boolean True if the intent contains the category, else false.
2496     *
2497     * @see #getCategories
2498     * @see #addCategory
2499     */
2500    public boolean hasCategory(String category) {
2501        return mCategories != null && mCategories.contains(category);
2502    }
2503
2504    /**
2505     * Return the set of all categories in the intent.  If there are no categories,
2506     * returns NULL.
2507     *
2508     * @return Set The set of categories you can examine.  Do not modify!
2509     *
2510     * @see #hasCategory
2511     * @see #addCategory
2512     */
2513    public Set<String> getCategories() {
2514        return mCategories;
2515    }
2516
2517    /**
2518     * Sets the ClassLoader that will be used when unmarshalling
2519     * any Parcelable values from the extras of this Intent.
2520     *
2521     * @param loader a ClassLoader, or null to use the default loader
2522     * at the time of unmarshalling.
2523     */
2524    public void setExtrasClassLoader(ClassLoader loader) {
2525        if (mExtras != null) {
2526            mExtras.setClassLoader(loader);
2527        }
2528    }
2529
2530    /**
2531     * Returns true if an extra value is associated with the given name.
2532     * @param name the extra's name
2533     * @return true if the given extra is present.
2534     */
2535    public boolean hasExtra(String name) {
2536        return mExtras != null && mExtras.containsKey(name);
2537    }
2538
2539    /**
2540     * Returns true if the Intent's extras contain a parcelled file descriptor.
2541     * @return true if the Intent contains a parcelled file descriptor.
2542     */
2543    public boolean hasFileDescriptors() {
2544        return mExtras != null && mExtras.hasFileDescriptors();
2545    }
2546
2547    /**
2548     * Retrieve extended data from the intent.
2549     *
2550     * @param name The name of the desired item.
2551     *
2552     * @return the value of an item that previously added with putExtra()
2553     * or null if none was found.
2554     *
2555     * @deprecated
2556     * @hide
2557     */
2558    @Deprecated
2559    public Object getExtra(String name) {
2560        return getExtra(name, null);
2561    }
2562
2563    /**
2564     * Retrieve extended data from the intent.
2565     *
2566     * @param name The name of the desired item.
2567     * @param defaultValue the value to be returned if no value of the desired
2568     * type is stored with the given name.
2569     *
2570     * @return the value of an item that previously added with putExtra()
2571     * or the default value if none was found.
2572     *
2573     * @see #putExtra(String, boolean)
2574     */
2575    public boolean getBooleanExtra(String name, boolean defaultValue) {
2576        return mExtras == null ? defaultValue :
2577            mExtras.getBoolean(name, defaultValue);
2578    }
2579
2580    /**
2581     * Retrieve extended data from the intent.
2582     *
2583     * @param name The name of the desired item.
2584     * @param defaultValue the value to be returned if no value of the desired
2585     * type is stored with the given name.
2586     *
2587     * @return the value of an item that previously added with putExtra()
2588     * or the default value if none was found.
2589     *
2590     * @see #putExtra(String, byte)
2591     */
2592    public byte getByteExtra(String name, byte defaultValue) {
2593        return mExtras == null ? defaultValue :
2594            mExtras.getByte(name, defaultValue);
2595    }
2596
2597    /**
2598     * Retrieve extended data from the intent.
2599     *
2600     * @param name The name of the desired item.
2601     * @param defaultValue the value to be returned if no value of the desired
2602     * type is stored with the given name.
2603     *
2604     * @return the value of an item that previously added with putExtra()
2605     * or the default value if none was found.
2606     *
2607     * @see #putExtra(String, short)
2608     */
2609    public short getShortExtra(String name, short defaultValue) {
2610        return mExtras == null ? defaultValue :
2611            mExtras.getShort(name, defaultValue);
2612    }
2613
2614    /**
2615     * Retrieve extended data from the intent.
2616     *
2617     * @param name The name of the desired item.
2618     * @param defaultValue the value to be returned if no value of the desired
2619     * type is stored with the given name.
2620     *
2621     * @return the value of an item that previously added with putExtra()
2622     * or the default value if none was found.
2623     *
2624     * @see #putExtra(String, char)
2625     */
2626    public char getCharExtra(String name, char defaultValue) {
2627        return mExtras == null ? defaultValue :
2628            mExtras.getChar(name, defaultValue);
2629    }
2630
2631    /**
2632     * Retrieve extended data from the intent.
2633     *
2634     * @param name The name of the desired item.
2635     * @param defaultValue the value to be returned if no value of the desired
2636     * type is stored with the given name.
2637     *
2638     * @return the value of an item that previously added with putExtra()
2639     * or the default value if none was found.
2640     *
2641     * @see #putExtra(String, int)
2642     */
2643    public int getIntExtra(String name, int defaultValue) {
2644        return mExtras == null ? defaultValue :
2645            mExtras.getInt(name, defaultValue);
2646    }
2647
2648    /**
2649     * Retrieve extended data from the intent.
2650     *
2651     * @param name The name of the desired item.
2652     * @param defaultValue the value to be returned if no value of the desired
2653     * type is stored with the given name.
2654     *
2655     * @return the value of an item that previously added with putExtra()
2656     * or the default value if none was found.
2657     *
2658     * @see #putExtra(String, long)
2659     */
2660    public long getLongExtra(String name, long defaultValue) {
2661        return mExtras == null ? defaultValue :
2662            mExtras.getLong(name, defaultValue);
2663    }
2664
2665    /**
2666     * Retrieve extended data from the intent.
2667     *
2668     * @param name The name of the desired item.
2669     * @param defaultValue the value to be returned if no value of the desired
2670     * type is stored with the given name.
2671     *
2672     * @return the value of an item that previously added with putExtra(),
2673     * or the default value if no such item is present
2674     *
2675     * @see #putExtra(String, float)
2676     */
2677    public float getFloatExtra(String name, float defaultValue) {
2678        return mExtras == null ? defaultValue :
2679            mExtras.getFloat(name, defaultValue);
2680    }
2681
2682    /**
2683     * Retrieve extended data from the intent.
2684     *
2685     * @param name The name of the desired item.
2686     * @param defaultValue the value to be returned if no value of the desired
2687     * type is stored with the given name.
2688     *
2689     * @return the value of an item that previously added with putExtra()
2690     * or the default value if none was found.
2691     *
2692     * @see #putExtra(String, double)
2693     */
2694    public double getDoubleExtra(String name, double defaultValue) {
2695        return mExtras == null ? defaultValue :
2696            mExtras.getDouble(name, defaultValue);
2697    }
2698
2699    /**
2700     * Retrieve extended data from the intent.
2701     *
2702     * @param name The name of the desired item.
2703     *
2704     * @return the value of an item that previously added with putExtra()
2705     * or null if no String value was found.
2706     *
2707     * @see #putExtra(String, String)
2708     */
2709    public String getStringExtra(String name) {
2710        return mExtras == null ? null : mExtras.getString(name);
2711    }
2712
2713    /**
2714     * Retrieve extended data from the intent.
2715     *
2716     * @param name The name of the desired item.
2717     *
2718     * @return the value of an item that previously added with putExtra()
2719     * or null if no CharSequence value was found.
2720     *
2721     * @see #putExtra(String, CharSequence)
2722     */
2723    public CharSequence getCharSequenceExtra(String name) {
2724        return mExtras == null ? null : mExtras.getCharSequence(name);
2725    }
2726
2727    /**
2728     * Retrieve extended data from the intent.
2729     *
2730     * @param name The name of the desired item.
2731     *
2732     * @return the value of an item that previously added with putExtra()
2733     * or null if no Parcelable value was found.
2734     *
2735     * @see #putExtra(String, Parcelable)
2736     */
2737    public <T extends Parcelable> T getParcelableExtra(String name) {
2738        return mExtras == null ? null : mExtras.<T>getParcelable(name);
2739    }
2740
2741    /**
2742     * Retrieve extended data from the intent.
2743     *
2744     * @param name The name of the desired item.
2745     *
2746     * @return the value of an item that previously added with putExtra()
2747     * or null if no Parcelable[] value was found.
2748     *
2749     * @see #putExtra(String, Parcelable[])
2750     */
2751    public Parcelable[] getParcelableArrayExtra(String name) {
2752        return mExtras == null ? null : mExtras.getParcelableArray(name);
2753    }
2754
2755    /**
2756     * Retrieve extended data from the intent.
2757     *
2758     * @param name The name of the desired item.
2759     *
2760     * @return the value of an item that previously added with putExtra()
2761     * or null if no ArrayList<Parcelable> value was found.
2762     *
2763     * @see #putParcelableArrayListExtra(String, ArrayList)
2764     */
2765    public <T extends Parcelable> ArrayList<T> getParcelableArrayListExtra(String name) {
2766        return mExtras == null ? null : mExtras.<T>getParcelableArrayList(name);
2767    }
2768
2769    /**
2770     * Retrieve extended data from the intent.
2771     *
2772     * @param name The name of the desired item.
2773     *
2774     * @return the value of an item that previously added with putExtra()
2775     * or null if no Serializable value was found.
2776     *
2777     * @see #putExtra(String, Serializable)
2778     */
2779    public Serializable getSerializableExtra(String name) {
2780        return mExtras == null ? null : mExtras.getSerializable(name);
2781    }
2782
2783    /**
2784     * Retrieve extended data from the intent.
2785     *
2786     * @param name The name of the desired item.
2787     *
2788     * @return the value of an item that previously added with putExtra()
2789     * or null if no ArrayList<Integer> value was found.
2790     *
2791     * @see #putIntegerArrayListExtra(String, ArrayList)
2792     */
2793    public ArrayList<Integer> getIntegerArrayListExtra(String name) {
2794        return mExtras == null ? null : mExtras.getIntegerArrayList(name);
2795    }
2796
2797    /**
2798     * Retrieve extended data from the intent.
2799     *
2800     * @param name The name of the desired item.
2801     *
2802     * @return the value of an item that previously added with putExtra()
2803     * or null if no ArrayList<String> value was found.
2804     *
2805     * @see #putStringArrayListExtra(String, ArrayList)
2806     */
2807    public ArrayList<String> getStringArrayListExtra(String name) {
2808        return mExtras == null ? null : mExtras.getStringArrayList(name);
2809    }
2810
2811    /**
2812     * Retrieve extended data from the intent.
2813     *
2814     * @param name The name of the desired item.
2815     *
2816     * @return the value of an item that previously added with putExtra()
2817     * or null if no boolean array value was found.
2818     *
2819     * @see #putExtra(String, boolean[])
2820     */
2821    public boolean[] getBooleanArrayExtra(String name) {
2822        return mExtras == null ? null : mExtras.getBooleanArray(name);
2823    }
2824
2825    /**
2826     * Retrieve extended data from the intent.
2827     *
2828     * @param name The name of the desired item.
2829     *
2830     * @return the value of an item that previously added with putExtra()
2831     * or null if no byte array value was found.
2832     *
2833     * @see #putExtra(String, byte[])
2834     */
2835    public byte[] getByteArrayExtra(String name) {
2836        return mExtras == null ? null : mExtras.getByteArray(name);
2837    }
2838
2839    /**
2840     * Retrieve extended data from the intent.
2841     *
2842     * @param name The name of the desired item.
2843     *
2844     * @return the value of an item that previously added with putExtra()
2845     * or null if no short array value was found.
2846     *
2847     * @see #putExtra(String, short[])
2848     */
2849    public short[] getShortArrayExtra(String name) {
2850        return mExtras == null ? null : mExtras.getShortArray(name);
2851    }
2852
2853    /**
2854     * Retrieve extended data from the intent.
2855     *
2856     * @param name The name of the desired item.
2857     *
2858     * @return the value of an item that previously added with putExtra()
2859     * or null if no char array value was found.
2860     *
2861     * @see #putExtra(String, char[])
2862     */
2863    public char[] getCharArrayExtra(String name) {
2864        return mExtras == null ? null : mExtras.getCharArray(name);
2865    }
2866
2867    /**
2868     * Retrieve extended data from the intent.
2869     *
2870     * @param name The name of the desired item.
2871     *
2872     * @return the value of an item that previously added with putExtra()
2873     * or null if no int array value was found.
2874     *
2875     * @see #putExtra(String, int[])
2876     */
2877    public int[] getIntArrayExtra(String name) {
2878        return mExtras == null ? null : mExtras.getIntArray(name);
2879    }
2880
2881    /**
2882     * Retrieve extended data from the intent.
2883     *
2884     * @param name The name of the desired item.
2885     *
2886     * @return the value of an item that previously added with putExtra()
2887     * or null if no long array value was found.
2888     *
2889     * @see #putExtra(String, long[])
2890     */
2891    public long[] getLongArrayExtra(String name) {
2892        return mExtras == null ? null : mExtras.getLongArray(name);
2893    }
2894
2895    /**
2896     * Retrieve extended data from the intent.
2897     *
2898     * @param name The name of the desired item.
2899     *
2900     * @return the value of an item that previously added with putExtra()
2901     * or null if no float array value was found.
2902     *
2903     * @see #putExtra(String, float[])
2904     */
2905    public float[] getFloatArrayExtra(String name) {
2906        return mExtras == null ? null : mExtras.getFloatArray(name);
2907    }
2908
2909    /**
2910     * Retrieve extended data from the intent.
2911     *
2912     * @param name The name of the desired item.
2913     *
2914     * @return the value of an item that previously added with putExtra()
2915     * or null if no double array value was found.
2916     *
2917     * @see #putExtra(String, double[])
2918     */
2919    public double[] getDoubleArrayExtra(String name) {
2920        return mExtras == null ? null : mExtras.getDoubleArray(name);
2921    }
2922
2923    /**
2924     * Retrieve extended data from the intent.
2925     *
2926     * @param name The name of the desired item.
2927     *
2928     * @return the value of an item that previously added with putExtra()
2929     * or null if no String array value was found.
2930     *
2931     * @see #putExtra(String, String[])
2932     */
2933    public String[] getStringArrayExtra(String name) {
2934        return mExtras == null ? null : mExtras.getStringArray(name);
2935    }
2936
2937    /**
2938     * Retrieve extended data from the intent.
2939     *
2940     * @param name The name of the desired item.
2941     *
2942     * @return the value of an item that previously added with putExtra()
2943     * or null if no Bundle value was found.
2944     *
2945     * @see #putExtra(String, Bundle)
2946     */
2947    public Bundle getBundleExtra(String name) {
2948        return mExtras == null ? null : mExtras.getBundle(name);
2949    }
2950
2951    /**
2952     * Retrieve extended data from the intent.
2953     *
2954     * @param name The name of the desired item.
2955     *
2956     * @return the value of an item that previously added with putExtra()
2957     * or null if no IBinder value was found.
2958     *
2959     * @see #putExtra(String, IBinder)
2960     *
2961     * @deprecated
2962     * @hide
2963     */
2964    @Deprecated
2965    public IBinder getIBinderExtra(String name) {
2966        return mExtras == null ? null : mExtras.getIBinder(name);
2967    }
2968
2969    /**
2970     * Retrieve extended data from the intent.
2971     *
2972     * @param name The name of the desired item.
2973     * @param defaultValue The default value to return in case no item is
2974     * associated with the key 'name'
2975     *
2976     * @return the value of an item that previously added with putExtra()
2977     * or defaultValue if none was found.
2978     *
2979     * @see #putExtra
2980     *
2981     * @deprecated
2982     * @hide
2983     */
2984    @Deprecated
2985    public Object getExtra(String name, Object defaultValue) {
2986        Object result = defaultValue;
2987        if (mExtras != null) {
2988            Object result2 = mExtras.get(name);
2989            if (result2 != null) {
2990                result = result2;
2991            }
2992        }
2993
2994        return result;
2995    }
2996
2997    /**
2998     * Retrieves a map of extended data from the intent.
2999     *
3000     * @return the map of all extras previously added with putExtra(),
3001     * or null if none have been added.
3002     */
3003    public Bundle getExtras() {
3004        return (mExtras != null)
3005                ? new Bundle(mExtras)
3006                : null;
3007    }
3008
3009    /**
3010     * Retrieve any special flags associated with this intent.  You will
3011     * normally just set them with {@link #setFlags} and let the system
3012     * take the appropriate action with them.
3013     *
3014     * @return int The currently set flags.
3015     *
3016     * @see #setFlags
3017     */
3018    public int getFlags() {
3019        return mFlags;
3020    }
3021
3022    /**
3023     * Retrieve the concrete component associated with the intent.  When receiving
3024     * an intent, this is the component that was found to best handle it (that is,
3025     * yourself) and will always be non-null; in all other cases it will be
3026     * null unless explicitly set.
3027     *
3028     * @return The name of the application component to handle the intent.
3029     *
3030     * @see #resolveActivity
3031     * @see #setComponent
3032     */
3033    public ComponentName getComponent() {
3034        return mComponent;
3035    }
3036
3037    /**
3038     * Return the Activity component that should be used to handle this intent.
3039     * The appropriate component is determined based on the information in the
3040     * intent, evaluated as follows:
3041     *
3042     * <p>If {@link #getComponent} returns an explicit class, that is returned
3043     * without any further consideration.
3044     *
3045     * <p>The activity must handle the {@link Intent#CATEGORY_DEFAULT} Intent
3046     * category to be considered.
3047     *
3048     * <p>If {@link #getAction} is non-NULL, the activity must handle this
3049     * action.
3050     *
3051     * <p>If {@link #resolveType} returns non-NULL, the activity must handle
3052     * this type.
3053     *
3054     * <p>If {@link #addCategory} has added any categories, the activity must
3055     * handle ALL of the categories specified.
3056     *
3057     * <p>If there are no activities that satisfy all of these conditions, a
3058     * null string is returned.
3059     *
3060     * <p>If multiple activities are found to satisfy the intent, the one with
3061     * the highest priority will be used.  If there are multiple activities
3062     * with the same priority, the system will either pick the best activity
3063     * based on user preference, or resolve to a system class that will allow
3064     * the user to pick an activity and forward from there.
3065     *
3066     * <p>This method is implemented simply by calling
3067     * {@link PackageManager#resolveActivity} with the "defaultOnly" parameter
3068     * true.</p>
3069     * <p> This API is called for you as part of starting an activity from an
3070     * intent.  You do not normally need to call it yourself.</p>
3071     *
3072     * @param pm The package manager with which to resolve the Intent.
3073     *
3074     * @return Name of the component implementing an activity that can
3075     *         display the intent.
3076     *
3077     * @see #setComponent
3078     * @see #getComponent
3079     * @see #resolveActivityInfo
3080     */
3081    public ComponentName resolveActivity(PackageManager pm) {
3082        if (mComponent != null) {
3083            return mComponent;
3084        }
3085
3086        ResolveInfo info = pm.resolveActivity(
3087            this, PackageManager.MATCH_DEFAULT_ONLY);
3088        if (info != null) {
3089            return new ComponentName(
3090                    info.activityInfo.applicationInfo.packageName,
3091                    info.activityInfo.name);
3092        }
3093
3094        return null;
3095    }
3096
3097    /**
3098     * Resolve the Intent into an {@link ActivityInfo}
3099     * describing the activity that should execute the intent.  Resolution
3100     * follows the same rules as described for {@link #resolveActivity}, but
3101     * you get back the completely information about the resolved activity
3102     * instead of just its class name.
3103     *
3104     * @param pm The package manager with which to resolve the Intent.
3105     * @param flags Addition information to retrieve as per
3106     * {@link PackageManager#getActivityInfo(ComponentName, int)
3107     * PackageManager.getActivityInfo()}.
3108     *
3109     * @return PackageManager.ActivityInfo
3110     *
3111     * @see #resolveActivity
3112     */
3113    public ActivityInfo resolveActivityInfo(PackageManager pm, int flags) {
3114        ActivityInfo ai = null;
3115        if (mComponent != null) {
3116            try {
3117                ai = pm.getActivityInfo(mComponent, flags);
3118            } catch (PackageManager.NameNotFoundException e) {
3119                // ignore
3120            }
3121        } else {
3122            ResolveInfo info = pm.resolveActivity(
3123                this, PackageManager.MATCH_DEFAULT_ONLY);
3124            if (info != null) {
3125                ai = info.activityInfo;
3126            }
3127        }
3128
3129        return ai;
3130    }
3131
3132    /**
3133     * Set the general action to be performed.
3134     *
3135     * @param action An action name, such as ACTION_VIEW.  Application-specific
3136     *               actions should be prefixed with the vendor's package name.
3137     *
3138     * @return Returns the same Intent object, for chaining multiple calls
3139     * into a single statement.
3140     *
3141     * @see #getAction
3142     */
3143    public Intent setAction(String action) {
3144        mAction = action;
3145        return this;
3146    }
3147
3148    /**
3149     * Set the data this intent is operating on.  This method automatically
3150     * clears any type that was previously set by {@link #setType}.
3151     *
3152     * @param data The URI of the data this intent is now targeting.
3153     *
3154     * @return Returns the same Intent object, for chaining multiple calls
3155     * into a single statement.
3156     *
3157     * @see #getData
3158     * @see #setType
3159     * @see #setDataAndType
3160     */
3161    public Intent setData(Uri data) {
3162        mData = data;
3163        mType = null;
3164        return this;
3165    }
3166
3167    /**
3168     * Set an explicit MIME data type.  This is used to create intents that
3169     * only specify a type and not data, for example to indicate the type of
3170     * data to return.  This method automatically clears any data that was
3171     * previously set by {@link #setData}.
3172     *
3173     * @param type The MIME type of the data being handled by this intent.
3174     *
3175     * @return Returns the same Intent object, for chaining multiple calls
3176     * into a single statement.
3177     *
3178     * @see #getType
3179     * @see #setData
3180     * @see #setDataAndType
3181     */
3182    public Intent setType(String type) {
3183        mData = null;
3184        mType = type;
3185        return this;
3186    }
3187
3188    /**
3189     * (Usually optional) Set the data for the intent along with an explicit
3190     * MIME data type.  This method should very rarely be used -- it allows you
3191     * to override the MIME type that would ordinarily be inferred from the
3192     * data with your own type given here.
3193     *
3194     * @param data The URI of the data this intent is now targeting.
3195     * @param type The MIME type of the data being handled by this intent.
3196     *
3197     * @return Returns the same Intent object, for chaining multiple calls
3198     * into a single statement.
3199     *
3200     * @see #setData
3201     * @see #setType
3202     */
3203    public Intent setDataAndType(Uri data, String type) {
3204        mData = data;
3205        mType = type;
3206        return this;
3207    }
3208
3209    /**
3210     * Add a new category to the intent.  Categories provide additional detail
3211     * about the action the intent is perform.  When resolving an intent, only
3212     * activities that provide <em>all</em> of the requested categories will be
3213     * used.
3214     *
3215     * @param category The desired category.  This can be either one of the
3216     *               predefined Intent categories, or a custom category in your own
3217     *               namespace.
3218     *
3219     * @return Returns the same Intent object, for chaining multiple calls
3220     * into a single statement.
3221     *
3222     * @see #hasCategory
3223     * @see #removeCategory
3224     */
3225    public Intent addCategory(String category) {
3226        if (mCategories == null) {
3227            mCategories = new HashSet<String>();
3228        }
3229        mCategories.add(category);
3230        return this;
3231    }
3232
3233    /**
3234     * Remove an category from an intent.
3235     *
3236     * @param category The category to remove.
3237     *
3238     * @see #addCategory
3239     */
3240    public void removeCategory(String category) {
3241        if (mCategories != null) {
3242            mCategories.remove(category);
3243            if (mCategories.size() == 0) {
3244                mCategories = null;
3245            }
3246        }
3247    }
3248
3249    /**
3250     * Add extended data to the intent.  The name must include a package
3251     * prefix, for example the app com.android.contacts would use names
3252     * like "com.android.contacts.ShowAll".
3253     *
3254     * @param name The name of the extra data, with package prefix.
3255     * @param value The boolean data value.
3256     *
3257     * @return Returns the same Intent object, for chaining multiple calls
3258     * into a single statement.
3259     *
3260     * @see #putExtras
3261     * @see #removeExtra
3262     * @see #getBooleanExtra(String, boolean)
3263     */
3264    public Intent putExtra(String name, boolean value) {
3265        if (mExtras == null) {
3266            mExtras = new Bundle();
3267        }
3268        mExtras.putBoolean(name, value);
3269        return this;
3270    }
3271
3272    /**
3273     * Add extended data to the intent.  The name must include a package
3274     * prefix, for example the app com.android.contacts would use names
3275     * like "com.android.contacts.ShowAll".
3276     *
3277     * @param name The name of the extra data, with package prefix.
3278     * @param value The byte data value.
3279     *
3280     * @return Returns the same Intent object, for chaining multiple calls
3281     * into a single statement.
3282     *
3283     * @see #putExtras
3284     * @see #removeExtra
3285     * @see #getByteExtra(String, byte)
3286     */
3287    public Intent putExtra(String name, byte value) {
3288        if (mExtras == null) {
3289            mExtras = new Bundle();
3290        }
3291        mExtras.putByte(name, value);
3292        return this;
3293    }
3294
3295    /**
3296     * Add extended data to the intent.  The name must include a package
3297     * prefix, for example the app com.android.contacts would use names
3298     * like "com.android.contacts.ShowAll".
3299     *
3300     * @param name The name of the extra data, with package prefix.
3301     * @param value The char data value.
3302     *
3303     * @return Returns the same Intent object, for chaining multiple calls
3304     * into a single statement.
3305     *
3306     * @see #putExtras
3307     * @see #removeExtra
3308     * @see #getCharExtra(String, char)
3309     */
3310    public Intent putExtra(String name, char value) {
3311        if (mExtras == null) {
3312            mExtras = new Bundle();
3313        }
3314        mExtras.putChar(name, value);
3315        return this;
3316    }
3317
3318    /**
3319     * Add extended data to the intent.  The name must include a package
3320     * prefix, for example the app com.android.contacts would use names
3321     * like "com.android.contacts.ShowAll".
3322     *
3323     * @param name The name of the extra data, with package prefix.
3324     * @param value The short data value.
3325     *
3326     * @return Returns the same Intent object, for chaining multiple calls
3327     * into a single statement.
3328     *
3329     * @see #putExtras
3330     * @see #removeExtra
3331     * @see #getShortExtra(String, short)
3332     */
3333    public Intent putExtra(String name, short value) {
3334        if (mExtras == null) {
3335            mExtras = new Bundle();
3336        }
3337        mExtras.putShort(name, value);
3338        return this;
3339    }
3340
3341    /**
3342     * Add extended data to the intent.  The name must include a package
3343     * prefix, for example the app com.android.contacts would use names
3344     * like "com.android.contacts.ShowAll".
3345     *
3346     * @param name The name of the extra data, with package prefix.
3347     * @param value The integer data value.
3348     *
3349     * @return Returns the same Intent object, for chaining multiple calls
3350     * into a single statement.
3351     *
3352     * @see #putExtras
3353     * @see #removeExtra
3354     * @see #getIntExtra(String, int)
3355     */
3356    public Intent putExtra(String name, int value) {
3357        if (mExtras == null) {
3358            mExtras = new Bundle();
3359        }
3360        mExtras.putInt(name, value);
3361        return this;
3362    }
3363
3364    /**
3365     * Add extended data to the intent.  The name must include a package
3366     * prefix, for example the app com.android.contacts would use names
3367     * like "com.android.contacts.ShowAll".
3368     *
3369     * @param name The name of the extra data, with package prefix.
3370     * @param value The long data value.
3371     *
3372     * @return Returns the same Intent object, for chaining multiple calls
3373     * into a single statement.
3374     *
3375     * @see #putExtras
3376     * @see #removeExtra
3377     * @see #getLongExtra(String, long)
3378     */
3379    public Intent putExtra(String name, long value) {
3380        if (mExtras == null) {
3381            mExtras = new Bundle();
3382        }
3383        mExtras.putLong(name, value);
3384        return this;
3385    }
3386
3387    /**
3388     * Add extended data to the intent.  The name must include a package
3389     * prefix, for example the app com.android.contacts would use names
3390     * like "com.android.contacts.ShowAll".
3391     *
3392     * @param name The name of the extra data, with package prefix.
3393     * @param value The float data value.
3394     *
3395     * @return Returns the same Intent object, for chaining multiple calls
3396     * into a single statement.
3397     *
3398     * @see #putExtras
3399     * @see #removeExtra
3400     * @see #getFloatExtra(String, float)
3401     */
3402    public Intent putExtra(String name, float value) {
3403        if (mExtras == null) {
3404            mExtras = new Bundle();
3405        }
3406        mExtras.putFloat(name, value);
3407        return this;
3408    }
3409
3410    /**
3411     * Add extended data to the intent.  The name must include a package
3412     * prefix, for example the app com.android.contacts would use names
3413     * like "com.android.contacts.ShowAll".
3414     *
3415     * @param name The name of the extra data, with package prefix.
3416     * @param value The double data value.
3417     *
3418     * @return Returns the same Intent object, for chaining multiple calls
3419     * into a single statement.
3420     *
3421     * @see #putExtras
3422     * @see #removeExtra
3423     * @see #getDoubleExtra(String, double)
3424     */
3425    public Intent putExtra(String name, double value) {
3426        if (mExtras == null) {
3427            mExtras = new Bundle();
3428        }
3429        mExtras.putDouble(name, value);
3430        return this;
3431    }
3432
3433    /**
3434     * Add extended data to the intent.  The name must include a package
3435     * prefix, for example the app com.android.contacts would use names
3436     * like "com.android.contacts.ShowAll".
3437     *
3438     * @param name The name of the extra data, with package prefix.
3439     * @param value The String data value.
3440     *
3441     * @return Returns the same Intent object, for chaining multiple calls
3442     * into a single statement.
3443     *
3444     * @see #putExtras
3445     * @see #removeExtra
3446     * @see #getStringExtra(String)
3447     */
3448    public Intent putExtra(String name, String value) {
3449        if (mExtras == null) {
3450            mExtras = new Bundle();
3451        }
3452        mExtras.putString(name, value);
3453        return this;
3454    }
3455
3456    /**
3457     * Add extended data to the intent.  The name must include a package
3458     * prefix, for example the app com.android.contacts would use names
3459     * like "com.android.contacts.ShowAll".
3460     *
3461     * @param name The name of the extra data, with package prefix.
3462     * @param value The CharSequence data value.
3463     *
3464     * @return Returns the same Intent object, for chaining multiple calls
3465     * into a single statement.
3466     *
3467     * @see #putExtras
3468     * @see #removeExtra
3469     * @see #getCharSequenceExtra(String)
3470     */
3471    public Intent putExtra(String name, CharSequence value) {
3472        if (mExtras == null) {
3473            mExtras = new Bundle();
3474        }
3475        mExtras.putCharSequence(name, value);
3476        return this;
3477    }
3478
3479    /**
3480     * Add extended data to the intent.  The name must include a package
3481     * prefix, for example the app com.android.contacts would use names
3482     * like "com.android.contacts.ShowAll".
3483     *
3484     * @param name The name of the extra data, with package prefix.
3485     * @param value The Parcelable data value.
3486     *
3487     * @return Returns the same Intent object, for chaining multiple calls
3488     * into a single statement.
3489     *
3490     * @see #putExtras
3491     * @see #removeExtra
3492     * @see #getParcelableExtra(String)
3493     */
3494    public Intent putExtra(String name, Parcelable value) {
3495        if (mExtras == null) {
3496            mExtras = new Bundle();
3497        }
3498        mExtras.putParcelable(name, value);
3499        return this;
3500    }
3501
3502    /**
3503     * Add extended data to the intent.  The name must include a package
3504     * prefix, for example the app com.android.contacts would use names
3505     * like "com.android.contacts.ShowAll".
3506     *
3507     * @param name The name of the extra data, with package prefix.
3508     * @param value The Parcelable[] data value.
3509     *
3510     * @return Returns the same Intent object, for chaining multiple calls
3511     * into a single statement.
3512     *
3513     * @see #putExtras
3514     * @see #removeExtra
3515     * @see #getParcelableArrayExtra(String)
3516     */
3517    public Intent putExtra(String name, Parcelable[] value) {
3518        if (mExtras == null) {
3519            mExtras = new Bundle();
3520        }
3521        mExtras.putParcelableArray(name, value);
3522        return this;
3523    }
3524
3525    /**
3526     * Add extended data to the intent.  The name must include a package
3527     * prefix, for example the app com.android.contacts would use names
3528     * like "com.android.contacts.ShowAll".
3529     *
3530     * @param name The name of the extra data, with package prefix.
3531     * @param value The ArrayList<Parcelable> data value.
3532     *
3533     * @return Returns the same Intent object, for chaining multiple calls
3534     * into a single statement.
3535     *
3536     * @see #putExtras
3537     * @see #removeExtra
3538     * @see #getParcelableArrayListExtra(String)
3539     */
3540    public Intent putParcelableArrayListExtra(String name, ArrayList<? extends Parcelable> value) {
3541        if (mExtras == null) {
3542            mExtras = new Bundle();
3543        }
3544        mExtras.putParcelableArrayList(name, value);
3545        return this;
3546    }
3547
3548    /**
3549     * Add extended data to the intent.  The name must include a package
3550     * prefix, for example the app com.android.contacts would use names
3551     * like "com.android.contacts.ShowAll".
3552     *
3553     * @param name The name of the extra data, with package prefix.
3554     * @param value The ArrayList<Integer> data value.
3555     *
3556     * @return Returns the same Intent object, for chaining multiple calls
3557     * into a single statement.
3558     *
3559     * @see #putExtras
3560     * @see #removeExtra
3561     * @see #getIntegerArrayListExtra(String)
3562     */
3563    public Intent putIntegerArrayListExtra(String name, ArrayList<Integer> value) {
3564        if (mExtras == null) {
3565            mExtras = new Bundle();
3566        }
3567        mExtras.putIntegerArrayList(name, value);
3568        return this;
3569    }
3570
3571    /**
3572     * Add extended data to the intent.  The name must include a package
3573     * prefix, for example the app com.android.contacts would use names
3574     * like "com.android.contacts.ShowAll".
3575     *
3576     * @param name The name of the extra data, with package prefix.
3577     * @param value The ArrayList<String> data value.
3578     *
3579     * @return Returns the same Intent object, for chaining multiple calls
3580     * into a single statement.
3581     *
3582     * @see #putExtras
3583     * @see #removeExtra
3584     * @see #getStringArrayListExtra(String)
3585     */
3586    public Intent putStringArrayListExtra(String name, ArrayList<String> value) {
3587        if (mExtras == null) {
3588            mExtras = new Bundle();
3589        }
3590        mExtras.putStringArrayList(name, value);
3591        return this;
3592    }
3593
3594    /**
3595     * Add extended data to the intent.  The name must include a package
3596     * prefix, for example the app com.android.contacts would use names
3597     * like "com.android.contacts.ShowAll".
3598     *
3599     * @param name The name of the extra data, with package prefix.
3600     * @param value The Serializable data value.
3601     *
3602     * @return Returns the same Intent object, for chaining multiple calls
3603     * into a single statement.
3604     *
3605     * @see #putExtras
3606     * @see #removeExtra
3607     * @see #getSerializableExtra(String)
3608     */
3609    public Intent putExtra(String name, Serializable value) {
3610        if (mExtras == null) {
3611            mExtras = new Bundle();
3612        }
3613        mExtras.putSerializable(name, value);
3614        return this;
3615    }
3616
3617    /**
3618     * Add extended data to the intent.  The name must include a package
3619     * prefix, for example the app com.android.contacts would use names
3620     * like "com.android.contacts.ShowAll".
3621     *
3622     * @param name The name of the extra data, with package prefix.
3623     * @param value The boolean array data value.
3624     *
3625     * @return Returns the same Intent object, for chaining multiple calls
3626     * into a single statement.
3627     *
3628     * @see #putExtras
3629     * @see #removeExtra
3630     * @see #getBooleanArrayExtra(String)
3631     */
3632    public Intent putExtra(String name, boolean[] value) {
3633        if (mExtras == null) {
3634            mExtras = new Bundle();
3635        }
3636        mExtras.putBooleanArray(name, value);
3637        return this;
3638    }
3639
3640    /**
3641     * Add extended data to the intent.  The name must include a package
3642     * prefix, for example the app com.android.contacts would use names
3643     * like "com.android.contacts.ShowAll".
3644     *
3645     * @param name The name of the extra data, with package prefix.
3646     * @param value The byte array data value.
3647     *
3648     * @return Returns the same Intent object, for chaining multiple calls
3649     * into a single statement.
3650     *
3651     * @see #putExtras
3652     * @see #removeExtra
3653     * @see #getByteArrayExtra(String)
3654     */
3655    public Intent putExtra(String name, byte[] value) {
3656        if (mExtras == null) {
3657            mExtras = new Bundle();
3658        }
3659        mExtras.putByteArray(name, value);
3660        return this;
3661    }
3662
3663    /**
3664     * Add extended data to the intent.  The name must include a package
3665     * prefix, for example the app com.android.contacts would use names
3666     * like "com.android.contacts.ShowAll".
3667     *
3668     * @param name The name of the extra data, with package prefix.
3669     * @param value The short array data value.
3670     *
3671     * @return Returns the same Intent object, for chaining multiple calls
3672     * into a single statement.
3673     *
3674     * @see #putExtras
3675     * @see #removeExtra
3676     * @see #getShortArrayExtra(String)
3677     */
3678    public Intent putExtra(String name, short[] value) {
3679        if (mExtras == null) {
3680            mExtras = new Bundle();
3681        }
3682        mExtras.putShortArray(name, value);
3683        return this;
3684    }
3685
3686    /**
3687     * Add extended data to the intent.  The name must include a package
3688     * prefix, for example the app com.android.contacts would use names
3689     * like "com.android.contacts.ShowAll".
3690     *
3691     * @param name The name of the extra data, with package prefix.
3692     * @param value The char array data value.
3693     *
3694     * @return Returns the same Intent object, for chaining multiple calls
3695     * into a single statement.
3696     *
3697     * @see #putExtras
3698     * @see #removeExtra
3699     * @see #getCharArrayExtra(String)
3700     */
3701    public Intent putExtra(String name, char[] value) {
3702        if (mExtras == null) {
3703            mExtras = new Bundle();
3704        }
3705        mExtras.putCharArray(name, value);
3706        return this;
3707    }
3708
3709    /**
3710     * Add extended data to the intent.  The name must include a package
3711     * prefix, for example the app com.android.contacts would use names
3712     * like "com.android.contacts.ShowAll".
3713     *
3714     * @param name The name of the extra data, with package prefix.
3715     * @param value The int array data value.
3716     *
3717     * @return Returns the same Intent object, for chaining multiple calls
3718     * into a single statement.
3719     *
3720     * @see #putExtras
3721     * @see #removeExtra
3722     * @see #getIntArrayExtra(String)
3723     */
3724    public Intent putExtra(String name, int[] value) {
3725        if (mExtras == null) {
3726            mExtras = new Bundle();
3727        }
3728        mExtras.putIntArray(name, value);
3729        return this;
3730    }
3731
3732    /**
3733     * Add extended data to the intent.  The name must include a package
3734     * prefix, for example the app com.android.contacts would use names
3735     * like "com.android.contacts.ShowAll".
3736     *
3737     * @param name The name of the extra data, with package prefix.
3738     * @param value The byte array data value.
3739     *
3740     * @return Returns the same Intent object, for chaining multiple calls
3741     * into a single statement.
3742     *
3743     * @see #putExtras
3744     * @see #removeExtra
3745     * @see #getLongArrayExtra(String)
3746     */
3747    public Intent putExtra(String name, long[] value) {
3748        if (mExtras == null) {
3749            mExtras = new Bundle();
3750        }
3751        mExtras.putLongArray(name, value);
3752        return this;
3753    }
3754
3755    /**
3756     * Add extended data to the intent.  The name must include a package
3757     * prefix, for example the app com.android.contacts would use names
3758     * like "com.android.contacts.ShowAll".
3759     *
3760     * @param name The name of the extra data, with package prefix.
3761     * @param value The float array data value.
3762     *
3763     * @return Returns the same Intent object, for chaining multiple calls
3764     * into a single statement.
3765     *
3766     * @see #putExtras
3767     * @see #removeExtra
3768     * @see #getFloatArrayExtra(String)
3769     */
3770    public Intent putExtra(String name, float[] value) {
3771        if (mExtras == null) {
3772            mExtras = new Bundle();
3773        }
3774        mExtras.putFloatArray(name, value);
3775        return this;
3776    }
3777
3778    /**
3779     * Add extended data to the intent.  The name must include a package
3780     * prefix, for example the app com.android.contacts would use names
3781     * like "com.android.contacts.ShowAll".
3782     *
3783     * @param name The name of the extra data, with package prefix.
3784     * @param value The double array data value.
3785     *
3786     * @return Returns the same Intent object, for chaining multiple calls
3787     * into a single statement.
3788     *
3789     * @see #putExtras
3790     * @see #removeExtra
3791     * @see #getDoubleArrayExtra(String)
3792     */
3793    public Intent putExtra(String name, double[] value) {
3794        if (mExtras == null) {
3795            mExtras = new Bundle();
3796        }
3797        mExtras.putDoubleArray(name, value);
3798        return this;
3799    }
3800
3801    /**
3802     * Add extended data to the intent.  The name must include a package
3803     * prefix, for example the app com.android.contacts would use names
3804     * like "com.android.contacts.ShowAll".
3805     *
3806     * @param name The name of the extra data, with package prefix.
3807     * @param value The String array data value.
3808     *
3809     * @return Returns the same Intent object, for chaining multiple calls
3810     * into a single statement.
3811     *
3812     * @see #putExtras
3813     * @see #removeExtra
3814     * @see #getStringArrayExtra(String)
3815     */
3816    public Intent putExtra(String name, String[] value) {
3817        if (mExtras == null) {
3818            mExtras = new Bundle();
3819        }
3820        mExtras.putStringArray(name, value);
3821        return this;
3822    }
3823
3824    /**
3825     * Add extended data to the intent.  The name must include a package
3826     * prefix, for example the app com.android.contacts would use names
3827     * like "com.android.contacts.ShowAll".
3828     *
3829     * @param name The name of the extra data, with package prefix.
3830     * @param value The Bundle data value.
3831     *
3832     * @return Returns the same Intent object, for chaining multiple calls
3833     * into a single statement.
3834     *
3835     * @see #putExtras
3836     * @see #removeExtra
3837     * @see #getBundleExtra(String)
3838     */
3839    public Intent putExtra(String name, Bundle value) {
3840        if (mExtras == null) {
3841            mExtras = new Bundle();
3842        }
3843        mExtras.putBundle(name, value);
3844        return this;
3845    }
3846
3847    /**
3848     * Add extended data to the intent.  The name must include a package
3849     * prefix, for example the app com.android.contacts would use names
3850     * like "com.android.contacts.ShowAll".
3851     *
3852     * @param name The name of the extra data, with package prefix.
3853     * @param value The IBinder data value.
3854     *
3855     * @return Returns the same Intent object, for chaining multiple calls
3856     * into a single statement.
3857     *
3858     * @see #putExtras
3859     * @see #removeExtra
3860     * @see #getIBinderExtra(String)
3861     *
3862     * @deprecated
3863     * @hide
3864     */
3865    @Deprecated
3866    public Intent putExtra(String name, IBinder value) {
3867        if (mExtras == null) {
3868            mExtras = new Bundle();
3869        }
3870        mExtras.putIBinder(name, value);
3871        return this;
3872    }
3873
3874    /**
3875     * Copy all extras in 'src' in to this intent.
3876     *
3877     * @param src Contains the extras to copy.
3878     *
3879     * @see #putExtra
3880     */
3881    public Intent putExtras(Intent src) {
3882        if (src.mExtras != null) {
3883            if (mExtras == null) {
3884                mExtras = new Bundle(src.mExtras);
3885            } else {
3886                mExtras.putAll(src.mExtras);
3887            }
3888        }
3889        return this;
3890    }
3891
3892    /**
3893     * Add a set of extended data to the intent.  The keys must include a package
3894     * prefix, for example the app com.android.contacts would use names
3895     * like "com.android.contacts.ShowAll".
3896     *
3897     * @param extras The Bundle of extras to add to this intent.
3898     *
3899     * @see #putExtra
3900     * @see #removeExtra
3901     */
3902    public Intent putExtras(Bundle extras) {
3903        if (mExtras == null) {
3904            mExtras = new Bundle();
3905        }
3906        mExtras.putAll(extras);
3907        return this;
3908    }
3909
3910    /**
3911     * Completely replace the extras in the Intent with the extras in the
3912     * given Intent.
3913     *
3914     * @param src The exact extras contained in this Intent are copied
3915     * into the target intent, replacing any that were previously there.
3916     */
3917    public Intent replaceExtras(Intent src) {
3918        mExtras = src.mExtras != null ? new Bundle(src.mExtras) : null;
3919        return this;
3920    }
3921
3922    /**
3923     * Completely replace the extras in the Intent with the given Bundle of
3924     * extras.
3925     *
3926     * @param extras The new set of extras in the Intent, or null to erase
3927     * all extras.
3928     */
3929    public Intent replaceExtras(Bundle extras) {
3930        mExtras = extras != null ? new Bundle(extras) : null;
3931        return this;
3932    }
3933
3934    /**
3935     * Remove extended data from the intent.
3936     *
3937     * @see #putExtra
3938     */
3939    public void removeExtra(String name) {
3940        if (mExtras != null) {
3941            mExtras.remove(name);
3942            if (mExtras.size() == 0) {
3943                mExtras = null;
3944            }
3945        }
3946    }
3947
3948    /**
3949     * Set special flags controlling how this intent is handled.  Most values
3950     * here depend on the type of component being executed by the Intent,
3951     * specifically the FLAG_ACTIVITY_* flags are all for use with
3952     * {@link Context#startActivity Context.startActivity()} and the
3953     * FLAG_RECEIVER_* flags are all for use with
3954     * {@link Context#sendBroadcast(Intent) Context.sendBroadcast()}.
3955     *
3956     * <p>See the <a href="{@docRoot}guide/topics/fundamentals.html#acttask">Application Fundamentals:
3957     * Activities and Tasks</a> documentation for important information on how some of these options impact
3958     * the behavior of your application.
3959     *
3960     * @param flags The desired flags.
3961     *
3962     * @return Returns the same Intent object, for chaining multiple calls
3963     * into a single statement.
3964     *
3965     * @see #getFlags
3966     * @see #addFlags
3967     *
3968     * @see #FLAG_GRANT_READ_URI_PERMISSION
3969     * @see #FLAG_GRANT_WRITE_URI_PERMISSION
3970     * @see #FLAG_DEBUG_LOG_RESOLUTION
3971     * @see #FLAG_FROM_BACKGROUND
3972     * @see #FLAG_ACTIVITY_BROUGHT_TO_FRONT
3973     * @see #FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET
3974     * @see #FLAG_ACTIVITY_CLEAR_TOP
3975     * @see #FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS
3976     * @see #FLAG_ACTIVITY_FORWARD_RESULT
3977     * @see #FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY
3978     * @see #FLAG_ACTIVITY_MULTIPLE_TASK
3979     * @see #FLAG_ACTIVITY_NEW_TASK
3980     * @see #FLAG_ACTIVITY_NO_HISTORY
3981     * @see #FLAG_ACTIVITY_NO_USER_ACTION
3982     * @see #FLAG_ACTIVITY_PREVIOUS_IS_TOP
3983     * @see #FLAG_ACTIVITY_RESET_TASK_IF_NEEDED
3984     * @see #FLAG_ACTIVITY_SINGLE_TOP
3985     * @see #FLAG_RECEIVER_REGISTERED_ONLY
3986     */
3987    public Intent setFlags(int flags) {
3988        mFlags = flags;
3989        return this;
3990    }
3991
3992    /**
3993     * Add additional flags to the intent (or with existing flags
3994     * value).
3995     *
3996     * @param flags The new flags to set.
3997     *
3998     * @return Returns the same Intent object, for chaining multiple calls
3999     * into a single statement.
4000     *
4001     * @see #setFlags
4002     */
4003    public Intent addFlags(int flags) {
4004        mFlags |= flags;
4005        return this;
4006    }
4007
4008    /**
4009     * (Usually optional) Explicitly set the component to handle the intent.
4010     * If left with the default value of null, the system will determine the
4011     * appropriate class to use based on the other fields (action, data,
4012     * type, categories) in the Intent.  If this class is defined, the
4013     * specified class will always be used regardless of the other fields.  You
4014     * should only set this value when you know you absolutely want a specific
4015     * class to be used; otherwise it is better to let the system find the
4016     * appropriate class so that you will respect the installed applications
4017     * and user preferences.
4018     *
4019     * @param component The name of the application component to handle the
4020     * intent, or null to let the system find one for you.
4021     *
4022     * @return Returns the same Intent object, for chaining multiple calls
4023     * into a single statement.
4024     *
4025     * @see #setClass
4026     * @see #setClassName(Context, String)
4027     * @see #setClassName(String, String)
4028     * @see #getComponent
4029     * @see #resolveActivity
4030     */
4031    public Intent setComponent(ComponentName component) {
4032        mComponent = component;
4033        return this;
4034    }
4035
4036    /**
4037     * Convenience for calling {@link #setComponent} with an
4038     * explicit class name.
4039     *
4040     * @param packageContext A Context of the application package implementing
4041     * this class.
4042     * @param className The name of a class inside of the application package
4043     * that will be used as the component for this Intent.
4044     *
4045     * @return Returns the same Intent object, for chaining multiple calls
4046     * into a single statement.
4047     *
4048     * @see #setComponent
4049     * @see #setClass
4050     */
4051    public Intent setClassName(Context packageContext, String className) {
4052        mComponent = new ComponentName(packageContext, className);
4053        return this;
4054    }
4055
4056    /**
4057     * Convenience for calling {@link #setComponent} with an
4058     * explicit application package name and class name.
4059     *
4060     * @param packageName The name of the package implementing the desired
4061     * component.
4062     * @param className The name of a class inside of the application package
4063     * that will be used as the component for this Intent.
4064     *
4065     * @return Returns the same Intent object, for chaining multiple calls
4066     * into a single statement.
4067     *
4068     * @see #setComponent
4069     * @see #setClass
4070     */
4071    public Intent setClassName(String packageName, String className) {
4072        mComponent = new ComponentName(packageName, className);
4073        return this;
4074    }
4075
4076    /**
4077     * Convenience for calling {@link #setComponent(ComponentName)} with the
4078     * name returned by a {@link Class} object.
4079     *
4080     * @param packageContext A Context of the application package implementing
4081     * this class.
4082     * @param cls The class name to set, equivalent to
4083     *            <code>setClassName(context, cls.getName())</code>.
4084     *
4085     * @return Returns the same Intent object, for chaining multiple calls
4086     * into a single statement.
4087     *
4088     * @see #setComponent
4089     */
4090    public Intent setClass(Context packageContext, Class<?> cls) {
4091        mComponent = new ComponentName(packageContext, cls);
4092        return this;
4093    }
4094
4095    /**
4096     * Use with {@link #fillIn} to allow the current action value to be
4097     * overwritten, even if it is already set.
4098     */
4099    public static final int FILL_IN_ACTION = 1<<0;
4100
4101    /**
4102     * Use with {@link #fillIn} to allow the current data or type value
4103     * overwritten, even if it is already set.
4104     */
4105    public static final int FILL_IN_DATA = 1<<1;
4106
4107    /**
4108     * Use with {@link #fillIn} to allow the current categories to be
4109     * overwritten, even if they are already set.
4110     */
4111    public static final int FILL_IN_CATEGORIES = 1<<2;
4112
4113    /**
4114     * Use with {@link #fillIn} to allow the current component value to be
4115     * overwritten, even if it is already set.
4116     */
4117    public static final int FILL_IN_COMPONENT = 1<<3;
4118
4119    /**
4120     * Copy the contents of <var>other</var> in to this object, but only
4121     * where fields are not defined by this object.  For purposes of a field
4122     * being defined, the following pieces of data in the Intent are
4123     * considered to be separate fields:
4124     *
4125     * <ul>
4126     * <li> action, as set by {@link #setAction}.
4127     * <li> data URI and MIME type, as set by {@link #setData(Uri)},
4128     * {@link #setType(String)}, or {@link #setDataAndType(Uri, String)}.
4129     * <li> categories, as set by {@link #addCategory}.
4130     * <li> component, as set by {@link #setComponent(ComponentName)} or
4131     * related methods.
4132     * <li> each top-level name in the associated extras.
4133     * </ul>
4134     *
4135     * <p>In addition, you can use the {@link #FILL_IN_ACTION},
4136     * {@link #FILL_IN_DATA}, {@link #FILL_IN_CATEGORIES}, and
4137     * {@link #FILL_IN_COMPONENT} to override the restriction where the
4138     * corresponding field will not be replaced if it is already set.
4139     *
4140     * <p>For example, consider Intent A with {data="foo", categories="bar"}
4141     * and Intent B with {action="gotit", data-type="some/thing",
4142     * categories="one","two"}.
4143     *
4144     * <p>Calling A.fillIn(B, Intent.FILL_IN_DATA) will result in A now
4145     * containing: {action="gotit", data-type="some/thing",
4146     * categories="bar"}.
4147     *
4148     * @param other Another Intent whose values are to be used to fill in
4149     * the current one.
4150     * @param flags Options to control which fields can be filled in.
4151     *
4152     * @return Returns a bit mask of {@link #FILL_IN_ACTION},
4153     * {@link #FILL_IN_DATA}, {@link #FILL_IN_CATEGORIES}, and
4154     * {@link #FILL_IN_COMPONENT} indicating which fields were changed.
4155     */
4156    public int fillIn(Intent other, int flags) {
4157        int changes = 0;
4158        if ((mAction == null && other.mAction == null)
4159                || (flags&FILL_IN_ACTION) != 0) {
4160            mAction = other.mAction;
4161            changes |= FILL_IN_ACTION;
4162        }
4163        if ((mData == null && mType == null &&
4164                (other.mData != null || other.mType != null))
4165                || (flags&FILL_IN_DATA) != 0) {
4166            mData = other.mData;
4167            mType = other.mType;
4168            changes |= FILL_IN_DATA;
4169        }
4170        if ((mCategories == null && other.mCategories == null)
4171                || (flags&FILL_IN_CATEGORIES) != 0) {
4172            if (other.mCategories != null) {
4173                mCategories = new HashSet<String>(other.mCategories);
4174            }
4175            changes |= FILL_IN_CATEGORIES;
4176        }
4177        if ((mComponent == null && other.mComponent == null)
4178                || (flags&FILL_IN_COMPONENT) != 0) {
4179            mComponent = other.mComponent;
4180            changes |= FILL_IN_COMPONENT;
4181        }
4182        mFlags |= other.mFlags;
4183        if (mExtras == null) {
4184            if (other.mExtras != null) {
4185                mExtras = new Bundle(other.mExtras);
4186            }
4187        } else if (other.mExtras != null) {
4188            try {
4189                Bundle newb = new Bundle(other.mExtras);
4190                newb.putAll(mExtras);
4191                mExtras = newb;
4192            } catch (RuntimeException e) {
4193                // Modifying the extras can cause us to unparcel the contents
4194                // of the bundle, and if we do this in the system process that
4195                // may fail.  We really should handle this (i.e., the Bundle
4196                // impl shouldn't be on top of a plain map), but for now just
4197                // ignore it and keep the original contents. :(
4198                Log.w("Intent", "Failure filling in extras", e);
4199            }
4200        }
4201        return changes;
4202    }
4203
4204    /**
4205     * Wrapper class holding an Intent and implementing comparisons on it for
4206     * the purpose of filtering.  The class implements its
4207     * {@link #equals equals()} and {@link #hashCode hashCode()} methods as
4208     * simple calls to {@link Intent#filterEquals(Intent)}  filterEquals()} and
4209     * {@link android.content.Intent#filterHashCode()}  filterHashCode()}
4210     * on the wrapped Intent.
4211     */
4212    public static final class FilterComparison {
4213        private final Intent mIntent;
4214        private final int mHashCode;
4215
4216        public FilterComparison(Intent intent) {
4217            mIntent = intent;
4218            mHashCode = intent.filterHashCode();
4219        }
4220
4221        /**
4222         * Return the Intent that this FilterComparison represents.
4223         * @return Returns the Intent held by the FilterComparison.  Do
4224         * not modify!
4225         */
4226        public Intent getIntent() {
4227            return mIntent;
4228        }
4229
4230        @Override
4231        public boolean equals(Object obj) {
4232            if (obj instanceof FilterComparison) {
4233                Intent other = ((FilterComparison)obj).mIntent;
4234                return mIntent.filterEquals(other);
4235            }
4236            return false;
4237        }
4238
4239        @Override
4240        public int hashCode() {
4241            return mHashCode;
4242        }
4243    }
4244
4245    /**
4246     * Determine if two intents are the same for the purposes of intent
4247     * resolution (filtering). That is, if their action, data, type,
4248     * class, and categories are the same.  This does <em>not</em> compare
4249     * any extra data included in the intents.
4250     *
4251     * @param other The other Intent to compare against.
4252     *
4253     * @return Returns true if action, data, type, class, and categories
4254     *         are the same.
4255     */
4256    public boolean filterEquals(Intent other) {
4257        if (other == null) {
4258            return false;
4259        }
4260        if (mAction != other.mAction) {
4261            if (mAction != null) {
4262                if (!mAction.equals(other.mAction)) {
4263                    return false;
4264                }
4265            } else {
4266                if (!other.mAction.equals(mAction)) {
4267                    return false;
4268                }
4269            }
4270        }
4271        if (mData != other.mData) {
4272            if (mData != null) {
4273                if (!mData.equals(other.mData)) {
4274                    return false;
4275                }
4276            } else {
4277                if (!other.mData.equals(mData)) {
4278                    return false;
4279                }
4280            }
4281        }
4282        if (mType != other.mType) {
4283            if (mType != null) {
4284                if (!mType.equals(other.mType)) {
4285                    return false;
4286                }
4287            } else {
4288                if (!other.mType.equals(mType)) {
4289                    return false;
4290                }
4291            }
4292        }
4293        if (mComponent != other.mComponent) {
4294            if (mComponent != null) {
4295                if (!mComponent.equals(other.mComponent)) {
4296                    return false;
4297                }
4298            } else {
4299                if (!other.mComponent.equals(mComponent)) {
4300                    return false;
4301                }
4302            }
4303        }
4304        if (mCategories != other.mCategories) {
4305            if (mCategories != null) {
4306                if (!mCategories.equals(other.mCategories)) {
4307                    return false;
4308                }
4309            } else {
4310                if (!other.mCategories.equals(mCategories)) {
4311                    return false;
4312                }
4313            }
4314        }
4315
4316        return true;
4317    }
4318
4319    /**
4320     * Generate hash code that matches semantics of filterEquals().
4321     *
4322     * @return Returns the hash value of the action, data, type, class, and
4323     *         categories.
4324     *
4325     * @see #filterEquals
4326     */
4327    public int filterHashCode() {
4328        int code = 0;
4329        if (mAction != null) {
4330            code += mAction.hashCode();
4331        }
4332        if (mData != null) {
4333            code += mData.hashCode();
4334        }
4335        if (mType != null) {
4336            code += mType.hashCode();
4337        }
4338        if (mComponent != null) {
4339            code += mComponent.hashCode();
4340        }
4341        if (mCategories != null) {
4342            code += mCategories.hashCode();
4343        }
4344        return code;
4345    }
4346
4347    @Override
4348    public String toString() {
4349        StringBuilder   b = new StringBuilder();
4350
4351        b.append("Intent {");
4352        if (mAction != null) b.append(" action=").append(mAction);
4353        if (mCategories != null) {
4354            b.append(" categories={");
4355            Iterator<String> i = mCategories.iterator();
4356            boolean didone = false;
4357            while (i.hasNext()) {
4358                if (didone) b.append(",");
4359                didone = true;
4360                b.append(i.next());
4361            }
4362            b.append("}");
4363        }
4364        if (mData != null) b.append(" data=").append(mData);
4365        if (mType != null) b.append(" type=").append(mType);
4366        if (mFlags != 0) b.append(" flags=0x").append(Integer.toHexString(mFlags));
4367        if (mComponent != null) b.append(" comp=").append(mComponent.toShortString());
4368        if (mExtras != null) b.append(" (has extras)");
4369        b.append(" }");
4370
4371        return b.toString();
4372    }
4373
4374    public String toURI() {
4375        StringBuilder uri = new StringBuilder(mData != null ? mData.toString() : "");
4376
4377        uri.append("#Intent;");
4378
4379        if (mAction != null) {
4380            uri.append("action=").append(mAction).append(';');
4381        }
4382        if (mCategories != null) {
4383            for (String category : mCategories) {
4384                uri.append("category=").append(category).append(';');
4385            }
4386        }
4387        if (mType != null) {
4388            uri.append("type=").append(mType).append(';');
4389        }
4390        if (mFlags != 0) {
4391            uri.append("launchFlags=0x").append(Integer.toHexString(mFlags)).append(';');
4392        }
4393        if (mComponent != null) {
4394            uri.append("component=").append(mComponent.flattenToShortString()).append(';');
4395        }
4396        if (mExtras != null) {
4397            for (String key : mExtras.keySet()) {
4398                final Object value = mExtras.get(key);
4399                char entryType =
4400                        value instanceof String    ? 'S' :
4401                        value instanceof Boolean   ? 'B' :
4402                        value instanceof Byte      ? 'b' :
4403                        value instanceof Character ? 'c' :
4404                        value instanceof Double    ? 'd' :
4405                        value instanceof Float     ? 'f' :
4406                        value instanceof Integer   ? 'i' :
4407                        value instanceof Long      ? 'l' :
4408                        value instanceof Short     ? 's' :
4409                        '\0';
4410
4411                if (entryType != '\0') {
4412                    uri.append(entryType);
4413                    uri.append('.');
4414                    uri.append(Uri.encode(key));
4415                    uri.append('=');
4416                    uri.append(Uri.encode(value.toString()));
4417                    uri.append(';');
4418                }
4419            }
4420        }
4421
4422        uri.append("end");
4423
4424        return uri.toString();
4425    }
4426
4427    public int describeContents() {
4428        return (mExtras != null) ? mExtras.describeContents() : 0;
4429    }
4430
4431    public void writeToParcel(Parcel out, int flags) {
4432        out.writeString(mAction);
4433        Uri.writeToParcel(out, mData);
4434        out.writeString(mType);
4435        out.writeInt(mFlags);
4436        ComponentName.writeToParcel(mComponent, out);
4437
4438        if (mCategories != null) {
4439            out.writeInt(mCategories.size());
4440            for (String category : mCategories) {
4441                out.writeString(category);
4442            }
4443        } else {
4444            out.writeInt(0);
4445        }
4446
4447        out.writeBundle(mExtras);
4448    }
4449
4450    public static final Parcelable.Creator<Intent> CREATOR
4451            = new Parcelable.Creator<Intent>() {
4452        public Intent createFromParcel(Parcel in) {
4453            return new Intent(in);
4454        }
4455        public Intent[] newArray(int size) {
4456            return new Intent[size];
4457        }
4458    };
4459
4460    private Intent(Parcel in) {
4461        readFromParcel(in);
4462    }
4463
4464    public void readFromParcel(Parcel in) {
4465        mAction = in.readString();
4466        mData = Uri.CREATOR.createFromParcel(in);
4467        mType = in.readString();
4468        mFlags = in.readInt();
4469        mComponent = ComponentName.readFromParcel(in);
4470
4471        int N = in.readInt();
4472        if (N > 0) {
4473            mCategories = new HashSet<String>();
4474            int i;
4475            for (i=0; i<N; i++) {
4476                mCategories.add(in.readString());
4477            }
4478        } else {
4479            mCategories = null;
4480        }
4481
4482        mExtras = in.readBundle();
4483    }
4484
4485    /**
4486     * Parses the "intent" element (and its children) from XML and instantiates
4487     * an Intent object.  The given XML parser should be located at the tag
4488     * where parsing should start (often named "intent"), from which the
4489     * basic action, data, type, and package and class name will be
4490     * retrieved.  The function will then parse in to any child elements,
4491     * looking for <category android:name="xxx"> tags to add categories and
4492     * <extra android:name="xxx" android:value="yyy"> to attach extra data
4493     * to the intent.
4494     *
4495     * @param resources The Resources to use when inflating resources.
4496     * @param parser The XML parser pointing at an "intent" tag.
4497     * @param attrs The AttributeSet interface for retrieving extended
4498     * attribute data at the current <var>parser</var> location.
4499     * @return An Intent object matching the XML data.
4500     * @throws XmlPullParserException If there was an XML parsing error.
4501     * @throws IOException If there was an I/O error.
4502     */
4503    public static Intent parseIntent(Resources resources, XmlPullParser parser, AttributeSet attrs)
4504            throws XmlPullParserException, IOException {
4505        Intent intent = new Intent();
4506
4507        TypedArray sa = resources.obtainAttributes(attrs,
4508                com.android.internal.R.styleable.Intent);
4509
4510        intent.setAction(sa.getString(com.android.internal.R.styleable.Intent_action));
4511
4512        String data = sa.getString(com.android.internal.R.styleable.Intent_data);
4513        String mimeType = sa.getString(com.android.internal.R.styleable.Intent_mimeType);
4514        intent.setDataAndType(data != null ? Uri.parse(data) : null, mimeType);
4515
4516        String packageName = sa.getString(com.android.internal.R.styleable.Intent_targetPackage);
4517        String className = sa.getString(com.android.internal.R.styleable.Intent_targetClass);
4518        if (packageName != null && className != null) {
4519            intent.setComponent(new ComponentName(packageName, className));
4520        }
4521
4522        sa.recycle();
4523
4524        int outerDepth = parser.getDepth();
4525        int type;
4526        while ((type=parser.next()) != XmlPullParser.END_DOCUMENT
4527               && (type != XmlPullParser.END_TAG || parser.getDepth() > outerDepth)) {
4528            if (type == XmlPullParser.END_TAG || type == XmlPullParser.TEXT) {
4529                continue;
4530            }
4531
4532            String nodeName = parser.getName();
4533            if (nodeName.equals("category")) {
4534                sa = resources.obtainAttributes(attrs,
4535                        com.android.internal.R.styleable.IntentCategory);
4536                String cat = sa.getString(com.android.internal.R.styleable.IntentCategory_name);
4537                sa.recycle();
4538
4539                if (cat != null) {
4540                    intent.addCategory(cat);
4541                }
4542                XmlUtils.skipCurrentTag(parser);
4543
4544            } else if (nodeName.equals("extra")) {
4545                if (intent.mExtras == null) {
4546                    intent.mExtras = new Bundle();
4547                }
4548                resources.parseBundleExtra("extra", attrs, intent.mExtras);
4549                XmlUtils.skipCurrentTag(parser);
4550
4551            } else {
4552                XmlUtils.skipCurrentTag(parser);
4553            }
4554        }
4555
4556        return intent;
4557    }
4558}
4559