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