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