-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathStarterIntent.java
More file actions
1085 lines (1017 loc) · 36.4 KB
/
StarterIntent.java
File metadata and controls
1085 lines (1017 loc) · 36.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package common.base;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.os.Parcelable;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.RequiresApi;
import java.io.Serializable;
import java.util.ArrayList;
import common.base.utils.Util;
/**
* ******************(^_^)***********************<br>
* User: fee(QQ/WeiXin:1176610771)<br>
* Date: 2019/6/24<br>
* Time: 18:04<br>
* <P>DESC:
* extends Intent,自已本身来调用启动Activity或者Service
* 场景为:再使用Intent设置各种数据后,并不想立刻调用 Context # startActivity()等API,而是需要再次去设置
* 可能需要的数据,则使用本类非常合适
* </p>
* ******************(^_^)***********************
*/
public class StarterIntent extends Intent {
/**
* Create an empty intent.
*/
public StarterIntent() {
}
/**
* Copy constructor.
*
* @param o
*/
public StarterIntent(Intent o) {
super(o);
}
public StarterIntent(String action) {
super(action);
}
public StarterIntent(String action, Uri uri) {
super(action, uri);
}
public StarterIntent(Context packageContext, Class<?> cls) {
super(packageContext, cls);
}
public StarterIntent(String action, Uri uri, Context packageContext, Class<?> cls) {
super(action, uri, packageContext, cls);
}
public void startActivity(Context context) {
startActivity(context,false,-1,null);
}
public void startActivityForResult(Context activity, int requestCode) {
startActivity(activity,true,requestCode,null);
// if (activity != null) {
// activity.startActivityFromFragment();
// }
}
public void startActivity(Context context, Class targetActivityClass) {
setClass(context, targetActivityClass);
startActivity(context,false,-1,null);
}
// public void startActivityFromFragment() {
//
// }
/**
* 注:在调用startActivity() API 之后,就不能 put数据了
* @param context Context
* @param needReturnResult true:需要被启动的Activity返回result数据
* @param requestCode 如果needReturnResult 为true, 则需要启动Activity的请求码
* @param extraOptionsBundle 附加的启动操作
* 可能 抛出 android.content.ActivityNotFoundException
*/
@SuppressLint("NewApi")
public void startActivity(Context context, boolean needReturnResult, int requestCode, Bundle extraOptionsBundle) {
if (context != null) {
boolean isActivityContext = context instanceof Activity;
if (needReturnResult && isActivityContext) {
Activity theActivity = (Activity) context;
if (extraOptionsBundle == null) {
theActivity.startActivityForResult(this,requestCode);
}
else {
if (Util.isCompateApi(16)) {
theActivity.startActivityForResult(this, requestCode, extraOptionsBundle);
}
}
}
else {
if (!isActivityContext) {
setFlags(FLAG_ACTIVITY_NEW_TASK);
}
if (extraOptionsBundle == null) {
context.startActivity(this);
}
else {
if (Util.isCompateApi(16)) {
context.startActivity(this, extraOptionsBundle);
}
}
}
}
}
public ComponentName startService(Context context) {
if (context != null) {
return context.startService(this);
}
return null;
}
@RequiresApi(api = 26)
public ComponentName startForegroundService(Context context) {
if (context != null) {
return context.startForegroundService(this);
}
return null;
}
@NonNull
@Override
public StarterIntent putExtra(String name, int value) {
super.putExtra(name, value);
return this;
}
/**
* Set the data this intent is operating on. This method automatically
* clears any type that was previously set by {@link #setType} or
* {@link #setTypeAndNormalize}.
*
* <p><em>Note: scheme matching in the Android framework is
* case-sensitive, unlike the formal RFC. As a result,
* you should always write your Uri with a lower case scheme,
* or use {@link Uri#normalizeScheme} or
* {@link #setDataAndNormalize}
* to ensure that the scheme is converted to lower case.</em>
*
* @param data The Uri of the data this intent is now targeting.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #getData
* @see #setDataAndNormalize
* @see Uri#normalizeScheme()
*/
@NonNull
@Override
public StarterIntent setData(@Nullable Uri data) {
super.setData(data);
return this;
}
/**
* Normalize and set the data this intent is operating on.
*
* <p>This method automatically clears any type that was
* previously set (for example, by {@link #setType}).
*
* <p>The data Uri is normalized using
* {@link Uri#normalizeScheme} before it is set,
* so really this is just a convenience method for
* <pre>
* setData(data.normalize())
* </pre>
*
* @param data The Uri of the data this intent is now targeting.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #getData
* @see #setType
* @see Uri#normalizeScheme
*/
@NonNull
@Override
public StarterIntent setDataAndNormalize(@NonNull Uri data) {
super.setDataAndNormalize(data);
return this;
}
/**
* Set an explicit MIME data type.
*
* <p>This is used to create intents that only specify a type and not data,
* for example to indicate the type of data to return.
*
* <p>This method automatically clears any data that was
* previously set (for example by {@link #setData}).
*
* <p><em>Note: MIME type matching in the Android framework is
* case-sensitive, unlike formal RFC MIME types. As a result,
* you should always write your MIME types with lower case letters,
* or use {@link #normalizeMimeType} or {@link #setTypeAndNormalize}
* to ensure that it is converted to lower case.</em>
*
* @param type The MIME type of the data being handled by this intent.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #getType
* @see #setTypeAndNormalize
* @see #setDataAndType
* @see #normalizeMimeType
*/
@NonNull
@Override
public StarterIntent setType(@Nullable String type) {
super.setType(type);
return this;
}
/**
* Normalize and set an explicit MIME data type.
*
* <p>This is used to create intents that only specify a type and not data,
* for example to indicate the type of data to return.
*
* <p>This method automatically clears any data that was
* previously set (for example by {@link #setData}).
*
* <p>The MIME type is normalized using
* {@link #normalizeMimeType} before it is set,
* so really this is just a convenience method for
* <pre>
* setType(Intent.normalizeMimeType(type))
* </pre>
*
* @param type The MIME type of the data being handled by this intent.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #getType
* @see #setData
* @see #normalizeMimeType
*/
@NonNull
@Override
public StarterIntent setTypeAndNormalize(@Nullable String type) {
super.setTypeAndNormalize(type);
return this;
}
/**
* (Usually optional) Set the data for the intent along with an explicit
* MIME data type. This method should very rarely be used -- it allows you
* to override the MIME type that would ordinarily be inferred from the
* data with your own type given here.
*
* <p><em>Note: MIME type and Uri scheme matching in the
* Android framework is case-sensitive, unlike the formal RFC definitions.
* As a result, you should always write these elements with lower case letters,
* or use {@link #normalizeMimeType} or {@link Uri#normalizeScheme} or
* {@link #setDataAndTypeAndNormalize}
* to ensure that they are converted to lower case.</em>
*
* @param data The Uri of the data this intent is now targeting.
* @param type The MIME type of the data being handled by this intent.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #setType
* @see #setData
* @see #normalizeMimeType
* @see Uri#normalizeScheme
* @see #setDataAndTypeAndNormalize
*/
@NonNull
@Override
public StarterIntent setDataAndType(@Nullable Uri data, @Nullable String type) {
super.setDataAndType(data, type);
return this;
}
/**
* (Usually optional) Normalize and set both the data Uri and an explicit
* MIME data type. This method should very rarely be used -- it allows you
* to override the MIME type that would ordinarily be inferred from the
* data with your own type given here.
*
* <p>The data Uri and the MIME type are normalize using
* {@link Uri#normalizeScheme} and {@link #normalizeMimeType}
* before they are set, so really this is just a convenience method for
* <pre>
* setDataAndType(data.normalize(), Intent.normalizeMimeType(type))
* </pre>
*
* @param data The Uri of the data this intent is now targeting.
* @param type The MIME type of the data being handled by this intent.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #setType
* @see #setData
* @see #setDataAndType
* @see #normalizeMimeType
* @see Uri#normalizeScheme
*/
@NonNull
@Override
public StarterIntent setDataAndTypeAndNormalize(@NonNull Uri data, @Nullable String type) {
super.setDataAndTypeAndNormalize(data, type);
return this;
}
/**
* Add a new category to the intent. Categories provide additional detail
* about the action the intent performs. When resolving an intent, only
* activities that provide <em>all</em> of the requested categories will be
* used.
*
* @param category The desired category. This can be either one of the
* predefined Intent categories, or a custom category in your own
* namespace.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #hasCategory
* @see #removeCategory
*/
@NonNull
@Override
public StarterIntent addCategory(String category) {
super.addCategory(category);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The boolean data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getBooleanExtra(String, boolean)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, boolean value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The byte data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getByteExtra(String, byte)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, byte value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The char data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getCharExtra(String, char)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, char value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The short data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getShortExtra(String, short)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, short value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The long data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getLongExtra(String, long)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, long value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The float data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getFloatExtra(String, float)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, float value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The double data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getDoubleExtra(String, double)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, double value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The String data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getStringExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, String value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The CharSequence data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getCharSequenceExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, CharSequence value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The Parcelable data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getParcelableExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, Parcelable value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The Parcelable[] data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getParcelableArrayExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, Parcelable[] value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The ArrayList<Parcelable> data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getParcelableArrayListExtra(String)
*/
@NonNull
@Override
public StarterIntent putParcelableArrayListExtra(String name, ArrayList<? extends Parcelable> value) {
super.putParcelableArrayListExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The ArrayList<Integer> data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getIntegerArrayListExtra(String)
*/
@NonNull
@Override
public StarterIntent putIntegerArrayListExtra(String name, ArrayList<Integer> value) {
super.putIntegerArrayListExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The ArrayList<String> data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getStringArrayListExtra(String)
*/
@NonNull
@Override
public StarterIntent putStringArrayListExtra(String name, ArrayList<String> value) {
super.putStringArrayListExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The ArrayList<CharSequence> data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getCharSequenceArrayListExtra(String)
*/
@NonNull
@Override
public StarterIntent putCharSequenceArrayListExtra(String name, ArrayList<CharSequence> value) {
super.putCharSequenceArrayListExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The Serializable data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getSerializableExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, Serializable value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The boolean array data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getBooleanArrayExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, boolean[] value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The byte array data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getByteArrayExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, byte[] value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The short array data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getShortArrayExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, short[] value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The char array data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getCharArrayExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, char[] value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The int array data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getIntArrayExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, int[] value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The byte array data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getLongArrayExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, long[] value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The float array data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getFloatArrayExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, float[] value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The double array data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getDoubleArrayExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, double[] value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The String array data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getStringArrayExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, String[] value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The CharSequence array data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getCharSequenceArrayExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, CharSequence[] value) {
super.putExtra(name, value);
return this;
}
/**
* Add extended data to the intent. The name must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param name The name of the extra data, with package prefix.
* @param value The Bundle data value.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #putExtras
* @see #removeExtra
* @see #getBundleExtra(String)
*/
@NonNull
@Override
public StarterIntent putExtra(String name, Bundle value) {
super.putExtra(name, value);
return this;
}
/**
* Copy all extras in 'src' in to this intent.
*
* @param src Contains the extras to copy.
* @see #putExtra
*/
@NonNull
@Override
public StarterIntent putExtras(@NonNull Intent src) {
super.putExtras(src);
return this;
}
/**
* Add a set of extended data to the intent. The keys must include a package
* prefix, for example the app com.android.contacts would use names
* like "com.android.contacts.ShowAll".
*
* @param extras The Bundle of extras to add to this intent.
* @see #putExtra
* @see #removeExtra
*/
@NonNull
@Override
public StarterIntent putExtras(@NonNull Bundle extras) {
super.putExtras(extras);
return this;
}
/**
* Completely replace the extras in the Intent with the given Bundle of
* extras.
*
* @param extras The new set of extras in the Intent, or null to erase
* all extras.
*/
@NonNull
@Override
public StarterIntent replaceExtras(@NonNull Bundle extras) {
super.replaceExtras(extras);
return this;
}
/**
* Set special flags controlling how this intent is handled. Most values
* here depend on the type of component being executed by the Intent,
* specifically the FLAG_ACTIVITY_* flags are all for use with
* {@link Context#startActivity Context.startActivity()} and the
* FLAG_RECEIVER_* flags are all for use with
* {@link Context#sendBroadcast(Intent) Context.sendBroadcast()}.
*
* <p>See the
* <a href="{@docRoot}guide/topics/fundamentals/tasks-and-back-stack.html">Tasks and Back
* Stack</a> documentation for important information on how some of these options impact
* the behavior of your application.
*
* @param flags The desired flags.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #getFlags
* @see #addFlags
* @see #removeFlags
*/
@NonNull
@Override
public StarterIntent setFlags(int flags) {
super.setFlags(flags);
return this;
}
/**
* Add additional flags to the intent (or with existing flags value).
*
* @param flags The new flags to set.
* @return Returns the same Intent object, for chaining multiple calls into
* a single statement.
* @see #setFlags
* @see #getFlags
* @see #removeFlags
*/
@NonNull
@Override
public StarterIntent addFlags(int flags) {
super.addFlags(flags);
return this;
}
/**
* (Usually optional) Set an explicit application package name that limits
* the components this Intent will resolve to. If left to the default
* value of null, all components in all applications will considered.
* If non-null, the Intent can only match the components in the given
* application package.
*
* @param packageName The name of the application package to handle the
* intent, or null to allow any application package.
* @return Returns the same Intent object, for chaining multiple calls
* into a single statement.
* @see #getPackage
* @see #resolveActivity
*/
@NonNull
@Override
public StarterIntent setPackage(@Nullable String packageName) {
super.setPackage(packageName);
return this;
}
/**
* (Usually optional) Explicitly set the component to handle the intent.
* If left with the default value of null, the system will determine the
* appropriate class to use based on the other fields (action, data,
* type, categories) in the Intent. If this class is defined, the
* specified class will always be used regardless of the other fields. You
* should only set this value when you know you absolutely want a specific
* class to be used; otherwise it is better to let the system find the