This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
ActivityOptions.xml
1853 lines (1849 loc) · 131 KB
/
ActivityOptions.xml
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
<Type Name="ActivityOptions" FullName="Android.App.ActivityOptions">
<TypeSignature Language="C#" Value="public class ActivityOptions : Java.Lang.Object" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit ActivityOptions extends Java.Lang.Object" />
<TypeSignature Language="DocId" Value="T:Android.App.ActivityOptions" />
<TypeSignature Language="F#" Value="type ActivityOptions = class
 inherit Object" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Java.Lang.Object</BaseTypeName>
</Base>
<Interfaces />
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("android/app/ActivityOptions", DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/app/ActivityOptions", DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="16">
<summary>Helper class for building an options Bundle that can be used with
<c>android.content.Context#startActivity(android.content.Intent, android.os.Bundle)
Context.startActivity(Intent, Bundle)</c> and related methods.</summary>
<remarks>
<para>Helper class for building an options Bundle that can be used with
<c>android.content.Context#startActivity(android.content.Intent, android.os.Bundle)
Context.startActivity(Intent, Bundle)</c> and related methods.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 16" />
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected ActivityOptions (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor(native int javaReference, valuetype Android.Runtime.JniHandleOwnership transfer) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActivityOptions.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Android.App.ActivityOptions : nativeint * Android.Runtime.JniHandleOwnership -> Android.App.ActivityOptions" Usage="new Android.App.ActivityOptions (javaReference, transfer)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="javaReference" Type="System.IntPtr" />
<Parameter Name="transfer" Type="Android.Runtime.JniHandleOwnership" />
</Parameters>
<Docs>
<param name="javaReference">A <see cref="T:System.IntPtr" />containing a Java Native Interface (JNI) object reference.</param>
<param name="transfer">A <see cref="T:Android.Runtime.JniHandleOwnership" />indicating how to handle <paramref name="javaReference" /></param>
<summary>A constructor used when creating managed representations of JNI objects; called by the runtime.</summary>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ExtraUsageTimeReport">
<MemberSignature Language="C#" Value="public const string ExtraUsageTimeReport;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string ExtraUsageTimeReport" />
<MemberSignature Language="DocId" Value="F:Android.App.ActivityOptions.ExtraUsageTimeReport" />
<MemberSignature Language="F#" Value="val mutable ExtraUsageTimeReport : string" Usage="Android.App.ActivityOptions.ExtraUsageTimeReport" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("EXTRA_USAGE_TIME_REPORT", ApiSince=23)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("EXTRA_USAGE_TIME_REPORT", ApiSince=23)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android23.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android23.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>A long in the extras delivered by <c>#requestUsageTimeReport</c> that contains
the total time (in ms) the user spent in the app flow.</summary>
<remarks>
<para>A long in the extras delivered by <c>#requestUsageTimeReport</c> that contains
the total time (in ms) the user spent in the app flow.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#EXTRA_USAGE_TIME_REPORT" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.EXTRA_USAGE_TIME_REPORT</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ExtraUsageTimeReportPackages">
<MemberSignature Language="C#" Value="public const string ExtraUsageTimeReportPackages;" />
<MemberSignature Language="ILAsm" Value=".field public static literal string ExtraUsageTimeReportPackages" />
<MemberSignature Language="DocId" Value="F:Android.App.ActivityOptions.ExtraUsageTimeReportPackages" />
<MemberSignature Language="F#" Value="val mutable ExtraUsageTimeReportPackages : string" Usage="Android.App.ActivityOptions.ExtraUsageTimeReportPackages" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("EXTRA_USAGE_TIME_REPORT_PACKAGES", ApiSince=23)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("EXTRA_USAGE_TIME_REPORT_PACKAGES", ApiSince=23)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android23.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android23.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>A Bundle in the extras delivered by <c>#requestUsageTimeReport</c> that contains
detailed information about the time spent in each package associated with the app;
each key is a package name, whose value is a long containing the time (in ms).</summary>
<remarks>
<para>A Bundle in the extras delivered by <c>#requestUsageTimeReport</c> that contains
detailed information about the time spent in each package associated with the app;
each key is a package name, whose value is a long containing the time (in ms).</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#EXTRA_USAGE_TIME_REPORT_PACKAGES" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.EXTRA_USAGE_TIME_REPORT_PACKAGES</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="IsShareIdentityEnabled">
<MemberSignature Language="C#" Value="public virtual bool IsShareIdentityEnabled { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool IsShareIdentityEnabled" />
<MemberSignature Language="DocId" Value="P:Android.App.ActivityOptions.IsShareIdentityEnabled" />
<MemberSignature Language="F#" Value="member this.IsShareIdentityEnabled : bool" Usage="Android.App.ActivityOptions.IsShareIdentityEnabled" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android34.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android34.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("isShareIdentityEnabled", "()Z", "GetIsShareIdentityEnabledHandler", ApiSince=34)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("isShareIdentityEnabled", "()Z", "GetIsShareIdentityEnabledHandler", ApiSince=34)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns whether the launching app has opted-in to sharing its identity with the launched
activity.</summary>
<value>
<c>true</c> if the launching app has opted-in to sharing its identity</value>
<remarks>
<para>Returns whether the launching app has opted-in to sharing its identity with the launched
activity.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#isShareIdentityEnabled()" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.isShareIdentityEnabled()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="JniPeerMembers">
<MemberSignature Language="C#" Value="public override Java.Interop.JniPeerMembers JniPeerMembers { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Java.Interop.JniPeerMembers JniPeerMembers" />
<MemberSignature Language="DocId" Value="P:Android.App.ActivityOptions.JniPeerMembers" />
<MemberSignature Language="F#" Value="member this.JniPeerMembers : Java.Interop.JniPeerMembers" Usage="Android.App.ActivityOptions.JniPeerMembers" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Never)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)]</AttributeName>
<AttributeName Language="F#">[<System.Diagnostics.DebuggerBrowsable(System.Diagnostics.DebuggerBrowsableState.Never)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Java.Interop.JniPeerMembers</ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</summary>
<value>To be added.</value>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="LaunchBounds">
<MemberSignature Language="C#" Value="public virtual Android.Graphics.Rect? LaunchBounds { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Graphics.Rect LaunchBounds" />
<MemberSignature Language="DocId" Value="P:Android.App.ActivityOptions.LaunchBounds" />
<MemberSignature Language="F#" Value="member this.LaunchBounds : Android.Graphics.Rect" Usage="Android.App.ActivityOptions.LaunchBounds" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android24.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android24.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getLaunchBounds", "()Landroid/graphics/Rect;", "GetGetLaunchBoundsHandler", ApiSince=24)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getLaunchBounds", "()Landroid/graphics/Rect;", "GetGetLaunchBoundsHandler", ApiSince=24)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Graphics.Rect</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns the bounds that should be used to launch the activity.</summary>
<value>Bounds used to launch the activity.</value>
<remarks>
<para>Returns the bounds that should be used to launch the activity.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#getLaunchBounds()" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.getLaunchBounds()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="LaunchDisplayId">
<MemberSignature Language="C#" Value="public virtual int LaunchDisplayId { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 LaunchDisplayId" />
<MemberSignature Language="DocId" Value="P:Android.App.ActivityOptions.LaunchDisplayId" />
<MemberSignature Language="F#" Value="member this.LaunchDisplayId : int" Usage="Android.App.ActivityOptions.LaunchDisplayId" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android26.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android26.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getLaunchDisplayId", "()I", "GetGetLaunchDisplayIdHandler", ApiSince=26)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getLaunchDisplayId", "()I", "GetGetLaunchDisplayIdHandler", ApiSince=26)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets the id of the display where activity should be launched.</summary>
<value>The id of the display where activity should be launched,
<c>android.view.Display#INVALID_DISPLAY</c> if not set.</value>
<remarks>
<para>Gets the id of the display where activity should be launched.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#getLaunchDisplayId()" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.getLaunchDisplayId()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="LockTaskMode">
<MemberSignature Language="C#" Value="public virtual bool LockTaskMode { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool LockTaskMode" />
<MemberSignature Language="DocId" Value="P:Android.App.ActivityOptions.LockTaskMode" />
<MemberSignature Language="F#" Value="member this.LockTaskMode : bool" Usage="Android.App.ActivityOptions.LockTaskMode" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getLockTaskMode", "()Z", "GetGetLockTaskModeHandler", ApiSince=28)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getLockTaskMode", "()Z", "GetGetLockTaskModeHandler", ApiSince=28)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>Gets whether the activity is to be launched into LockTask mode.</summary>
<value>
<c>true</c> if the activity is to be launched into LockTask mode.</value>
<remarks>
<para>Gets whether the activity is to be launched into LockTask mode.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#getLockTaskMode()" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.getLockTaskMode()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="MakeBasic">
<MemberSignature Language="C#" Value="public static Android.App.ActivityOptions? MakeBasic ();" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.App.ActivityOptions MakeBasic() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActivityOptions.MakeBasic" />
<MemberSignature Language="F#" Value="static member MakeBasic : unit -> Android.App.ActivityOptions" Usage="Android.App.ActivityOptions.MakeBasic " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("makeBasic", "()Landroid/app/ActivityOptions;", "", ApiSince=23)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("makeBasic", "()Landroid/app/ActivityOptions;", "", ApiSince=23)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android23.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android23.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActivityOptions</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Create a basic ActivityOptions that has no special animation associated with it.</summary>
<returns>To be added.</returns>
<remarks>
<para>Create a basic ActivityOptions that has no special animation associated with it.
Other options can still be set.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#makeBasic()" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.makeBasic()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="MakeClipRevealAnimation">
<MemberSignature Language="C#" Value="public static Android.App.ActivityOptions? MakeClipRevealAnimation (Android.Views.View? source, int startX, int startY, int width, int height);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.App.ActivityOptions MakeClipRevealAnimation(class Android.Views.View source, int32 startX, int32 startY, int32 width, int32 height) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActivityOptions.MakeClipRevealAnimation(Android.Views.View,System.Int32,System.Int32,System.Int32,System.Int32)" />
<MemberSignature Language="F#" Value="static member MakeClipRevealAnimation : Android.Views.View * int * int * int * int -> Android.App.ActivityOptions" Usage="Android.App.ActivityOptions.MakeClipRevealAnimation (source, startX, startY, width, height)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("makeClipRevealAnimation", "(Landroid/view/View;IIII)Landroid/app/ActivityOptions;", "", ApiSince=23)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("makeClipRevealAnimation", "(Landroid/view/View;IIII)Landroid/app/ActivityOptions;", "", ApiSince=23)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android23.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android23.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActivityOptions</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="Android.Views.View" />
<Parameter Name="startX" Type="System.Int32" />
<Parameter Name="startY" Type="System.Int32" />
<Parameter Name="width" Type="System.Int32" />
<Parameter Name="height" Type="System.Int32" />
</Parameters>
<Docs>
<param name="source">The View that the new activity is animating from. This
defines the coordinate space for <var>startX</var> and <var>startY</var>.</param>
<param name="startX">The x starting location of the new activity, relative to <var>source</var>.</param>
<param name="startY">The y starting location of the activity, relative to <var>source</var>.</param>
<param name="width">The initial width of the new activity.</param>
<param name="height">The initial height of the new activity.</param>
<summary>Create an ActivityOptions specifying an animation where the new
activity is revealed from a small originating area of the screen to
its final full representation.</summary>
<returns>Returns a new ActivityOptions object that you can use to
supply these options as the options Bundle when starting an activity.</returns>
<remarks>
<para>Create an ActivityOptions specifying an animation where the new
activity is revealed from a small originating area of the screen to
its final full representation.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#makeClipRevealAnimation(android.view.View,%20int,%20int,%20int,%20int)" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.makeClipRevealAnimation(android.view.View, int, int, int, int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="MakeCustomAnimation">
<MemberSignature Language="C#" Value="public static Android.App.ActivityOptions? MakeCustomAnimation (Android.Content.Context? context, int enterResId, int exitResId);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.App.ActivityOptions MakeCustomAnimation(class Android.Content.Context context, int32 enterResId, int32 exitResId) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActivityOptions.MakeCustomAnimation(Android.Content.Context,System.Int32,System.Int32)" />
<MemberSignature Language="F#" Value="static member MakeCustomAnimation : Android.Content.Context * int * int -> Android.App.ActivityOptions" Usage="Android.App.ActivityOptions.MakeCustomAnimation (context, enterResId, exitResId)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("makeCustomAnimation", "(Landroid/content/Context;II)Landroid/app/ActivityOptions;", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("makeCustomAnimation", "(Landroid/content/Context;II)Landroid/app/ActivityOptions;", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActivityOptions</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="context" Type="Android.Content.Context" />
<Parameter Name="enterResId" Type="System.Int32" />
<Parameter Name="exitResId" Type="System.Int32" />
</Parameters>
<Docs>
<param name="context">Who is defining this. This is the application that the
animation resources will be loaded from.</param>
<param name="enterResId">A resource ID of the animation resource to use for
the incoming activity. Use 0 for no animation.</param>
<param name="exitResId">A resource ID of the animation resource to use for
the outgoing activity. Use 0 for no animation.</param>
<summary>Create an ActivityOptions specifying a custom animation to run when
the activity is displayed.</summary>
<returns>Returns a new ActivityOptions object that you can use to
supply these options as the options Bundle when starting an activity.</returns>
<remarks>
<para>Create an ActivityOptions specifying a custom animation to run when
the activity is displayed.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#makeCustomAnimation(android.content.Context,%20int,%20int)" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.makeCustomAnimation(android.content.Context, int, int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 16" />
</Docs>
</Member>
<Member MemberName="MakeCustomAnimation">
<MemberSignature Language="C#" Value="public static Android.App.ActivityOptions MakeCustomAnimation (Android.Content.Context context, int enterResId, int exitResId, int backgroundColor);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.App.ActivityOptions MakeCustomAnimation(class Android.Content.Context context, int32 enterResId, int32 exitResId, int32 backgroundColor) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActivityOptions.MakeCustomAnimation(Android.Content.Context,System.Int32,System.Int32,System.Int32)" />
<MemberSignature Language="F#" Value="static member MakeCustomAnimation : Android.Content.Context * int * int * int -> Android.App.ActivityOptions" Usage="Android.App.ActivityOptions.MakeCustomAnimation (context, enterResId, exitResId, backgroundColor)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("makeCustomAnimation", "(Landroid/content/Context;III)Landroid/app/ActivityOptions;", "", ApiSince=33)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("makeCustomAnimation", "(Landroid/content/Context;III)Landroid/app/ActivityOptions;", "", ApiSince=33)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android33.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android33.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActivityOptions</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="context" Type="Android.Content.Context" />
<Parameter Name="enterResId" Type="System.Int32" />
<Parameter Name="exitResId" Type="System.Int32" />
<Parameter Name="backgroundColor" Type="System.Int32" />
</Parameters>
<Docs>
<param name="context">Who is defining this. This is the application that the
animation resources will be loaded from.</param>
<param name="enterResId">A resource ID of the animation resource to use for
the incoming activity. Use 0 for no animation.</param>
<param name="exitResId">A resource ID of the animation resource to use for
the outgoing activity. Use 0 for no animation.</param>
<param name="backgroundColor">The background color to use for the background during the animation if
the animation requires a background. Set to 0 to not override the default color.</param>
<summary>Create an ActivityOptions specifying a custom animation to run when
the activity is displayed.</summary>
<returns>Returns a new ActivityOptions object that you can use to
supply these options as the options Bundle when starting an activity.</returns>
<remarks>
<para>Create an ActivityOptions specifying a custom animation to run when
the activity is displayed.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#makeCustomAnimation(android.content.Context,%20int,%20int,%20int)" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.makeCustomAnimation(android.content.Context, int, int, int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="MakeLaunchIntoPip">
<MemberSignature Language="C#" Value="public static Android.App.ActivityOptions MakeLaunchIntoPip (Android.App.PictureInPictureParams pictureInPictureParams);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.App.ActivityOptions MakeLaunchIntoPip(class Android.App.PictureInPictureParams pictureInPictureParams) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActivityOptions.MakeLaunchIntoPip(Android.App.PictureInPictureParams)" />
<MemberSignature Language="F#" Value="static member MakeLaunchIntoPip : Android.App.PictureInPictureParams -> Android.App.ActivityOptions" Usage="Android.App.ActivityOptions.MakeLaunchIntoPip pictureInPictureParams" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("makeLaunchIntoPip", "(Landroid/app/PictureInPictureParams;)Landroid/app/ActivityOptions;", "", ApiSince=33)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("makeLaunchIntoPip", "(Landroid/app/PictureInPictureParams;)Landroid/app/ActivityOptions;", "", ApiSince=33)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android33.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android33.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActivityOptions</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="pictureInPictureParams" Type="Android.App.PictureInPictureParams" />
</Parameters>
<Docs>
<param name="pictureInPictureParams">
<c>PictureInPictureParams</c> for launching the Activity to
picture-in-picture mode.</param>
<summary>Creates an <c>ActivityOptions</c> instance that launch into picture-in-picture.</summary>
<returns>To be added.</returns>
<remarks>
<para>Creates an <c>ActivityOptions</c> instance that launch into picture-in-picture.
This is normally used by a Host activity to start another activity that will directly enter
picture-in-picture upon its creation.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#makeLaunchIntoPip(android.app.PictureInPictureParams)" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.makeLaunchIntoPip(android.app.PictureInPictureParams)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="MakeScaleUpAnimation">
<MemberSignature Language="C#" Value="public static Android.App.ActivityOptions? MakeScaleUpAnimation (Android.Views.View? source, int startX, int startY, int width, int height);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.App.ActivityOptions MakeScaleUpAnimation(class Android.Views.View source, int32 startX, int32 startY, int32 width, int32 height) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActivityOptions.MakeScaleUpAnimation(Android.Views.View,System.Int32,System.Int32,System.Int32,System.Int32)" />
<MemberSignature Language="F#" Value="static member MakeScaleUpAnimation : Android.Views.View * int * int * int * int -> Android.App.ActivityOptions" Usage="Android.App.ActivityOptions.MakeScaleUpAnimation (source, startX, startY, width, height)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("makeScaleUpAnimation", "(Landroid/view/View;IIII)Landroid/app/ActivityOptions;", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("makeScaleUpAnimation", "(Landroid/view/View;IIII)Landroid/app/ActivityOptions;", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActivityOptions</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="Android.Views.View" />
<Parameter Name="startX" Type="System.Int32" />
<Parameter Name="startY" Type="System.Int32" />
<Parameter Name="width" Type="System.Int32" />
<Parameter Name="height" Type="System.Int32" />
</Parameters>
<Docs>
<param name="source">The View that the new activity is animating from. This
defines the coordinate space for <var>startX</var> and <var>startY</var>.</param>
<param name="startX">The x starting location of the new activity, relative to <var>source</var>.</param>
<param name="startY">The y starting location of the activity, relative to <var>source</var>.</param>
<param name="width">The initial width of the new activity.</param>
<param name="height">The initial height of the new activity.</param>
<summary>Create an ActivityOptions specifying an animation where the new
activity is scaled from a small originating area of the screen to
its final full representation.</summary>
<returns>Returns a new ActivityOptions object that you can use to
supply these options as the options Bundle when starting an activity.</returns>
<remarks>
<para>Create an ActivityOptions specifying an animation where the new
activity is scaled from a small originating area of the screen to
its final full representation.</para>
<para>If the Intent this is being used with has not set its
<c>android.content.Intent#setSourceBounds Intent.setSourceBounds</c>,
those bounds will be filled in for you based on the initial
bounds passed in here.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#makeScaleUpAnimation(android.view.View,%20int,%20int,%20int,%20int)" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.makeScaleUpAnimation(android.view.View, int, int, int, int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 16" />
</Docs>
</Member>
<Member MemberName="MakeSceneTransitionAnimation">
<MemberSignature Language="C#" Value="public static Android.App.ActivityOptions? MakeSceneTransitionAnimation (Android.App.Activity? activity, params Android.Util.Pair[]? sharedElements);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.App.ActivityOptions MakeSceneTransitionAnimation(class Android.App.Activity activity, class Android.Util.Pair[] sharedElements) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActivityOptions.MakeSceneTransitionAnimation(Android.App.Activity,Android.Util.Pair[])" />
<MemberSignature Language="F#" Value="static member MakeSceneTransitionAnimation : Android.App.Activity * Android.Util.Pair[] -> Android.App.ActivityOptions" Usage="Android.App.ActivityOptions.MakeSceneTransitionAnimation (activity, sharedElements)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("makeSceneTransitionAnimation", "(Landroid/app/Activity;[Landroid/util/Pair;)Landroid/app/ActivityOptions;", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("makeSceneTransitionAnimation", "(Landroid/app/Activity;[Landroid/util/Pair;)Landroid/app/ActivityOptions;", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActivityOptions</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="activity" Type="Android.App.Activity" />
<Parameter Name="sharedElements" Type="Android.Util.Pair[]">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="activity">To be added.</param>
<param name="sharedElements">To be added.</param>
<summary tool="true">Create an ActivityOptions to transition between Activities using cross-Activity scene
animations.</summary>
<returns>To be added.</returns>
<remarks>
<para>Portions of this page are modifications based on work created and shared by the <format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format> and used according to terms described in the <format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 21" />
</Docs>
</Member>
<Member MemberName="MakeSceneTransitionAnimation">
<MemberSignature Language="C#" Value="public static Android.App.ActivityOptions? MakeSceneTransitionAnimation (Android.App.Activity? activity, Android.Views.View? sharedElement, string? sharedElementName);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.App.ActivityOptions MakeSceneTransitionAnimation(class Android.App.Activity activity, class Android.Views.View sharedElement, string sharedElementName) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActivityOptions.MakeSceneTransitionAnimation(Android.App.Activity,Android.Views.View,System.String)" />
<MemberSignature Language="F#" Value="static member MakeSceneTransitionAnimation : Android.App.Activity * Android.Views.View * string -> Android.App.ActivityOptions" Usage="Android.App.ActivityOptions.MakeSceneTransitionAnimation (activity, sharedElement, sharedElementName)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("makeSceneTransitionAnimation", "(Landroid/app/Activity;Landroid/view/View;Ljava/lang/String;)Landroid/app/ActivityOptions;", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("makeSceneTransitionAnimation", "(Landroid/app/Activity;Landroid/view/View;Ljava/lang/String;)Landroid/app/ActivityOptions;", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActivityOptions</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="activity" Type="Android.App.Activity" />
<Parameter Name="sharedElement" Type="Android.Views.View" />
<Parameter Name="sharedElementName" Type="System.String" />
</Parameters>
<Docs>
<param name="activity">The Activity whose window contains the shared elements.</param>
<param name="sharedElement">The View to transition to the started Activity.</param>
<param name="sharedElementName">The shared element name as used in the target Activity. This
must not be null.</param>
<summary>Create an ActivityOptions to transition between Activities using cross-Activity scene
animations.</summary>
<returns>Returns a new ActivityOptions object that you can use to
supply these options as the options Bundle when starting an activity.</returns>
<remarks>
<para>Create an ActivityOptions to transition between Activities using cross-Activity scene
animations. This method carries the position of one shared element to the started Activity.
The position of <c>sharedElement</c> will be used as the epicenter for the
exit Transition. The position of the shared element in the launched Activity will be the
epicenter of its entering Transition.</para>
<para>This requires <c>android.view.Window#FEATURE_ACTIVITY_TRANSITIONS</c> to be
enabled on the calling Activity to cause an exit transition. The same must be in
the called Activity to get an entering transition.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#makeSceneTransitionAnimation(android.app.Activity,%20android.view.View,%20java.lang.String)" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.makeSceneTransitionAnimation(android.app.Activity, android.view.View, java.lang.String)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<altmember cref="M:Android.Transitions.Transition.SetEpicenterCallback(.EpicenterCallback)" />
</Docs>
</Member>
<Member MemberName="MakeTaskLaunchBehind">
<MemberSignature Language="C#" Value="public static Android.App.ActivityOptions? MakeTaskLaunchBehind ();" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.App.ActivityOptions MakeTaskLaunchBehind() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActivityOptions.MakeTaskLaunchBehind" />
<MemberSignature Language="F#" Value="static member MakeTaskLaunchBehind : unit -> Android.App.ActivityOptions" Usage="Android.App.ActivityOptions.MakeTaskLaunchBehind " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("makeTaskLaunchBehind", "()Landroid/app/ActivityOptions;", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("makeTaskLaunchBehind", "()Landroid/app/ActivityOptions;", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActivityOptions</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>If set along with Intent.</summary>
<returns>To be added.</returns>
<remarks>
<para>If set along with Intent.FLAG_ACTIVITY_NEW_DOCUMENT then the task being launched will not be
presented to the user but will instead be only available through the recents task list.
In addition, the new task wil be affiliated with the launching activity's task.
Affiliated tasks are grouped together in the recents task list.</para>
<para>This behavior is not supported for activities with <c>android.R.styleable#AndroidManifestActivity_launchMode launchMode</c> values of
<c>singleInstance</c> or <c>singleTask</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#makeTaskLaunchBehind()" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.makeTaskLaunchBehind()</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="MakeThumbnailScaleUpAnimation">
<MemberSignature Language="C#" Value="public static Android.App.ActivityOptions? MakeThumbnailScaleUpAnimation (Android.Views.View? source, Android.Graphics.Bitmap? thumbnail, int startX, int startY);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Android.App.ActivityOptions MakeThumbnailScaleUpAnimation(class Android.Views.View source, class Android.Graphics.Bitmap thumbnail, int32 startX, int32 startY) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActivityOptions.MakeThumbnailScaleUpAnimation(Android.Views.View,Android.Graphics.Bitmap,System.Int32,System.Int32)" />
<MemberSignature Language="F#" Value="static member MakeThumbnailScaleUpAnimation : Android.Views.View * Android.Graphics.Bitmap * int * int -> Android.App.ActivityOptions" Usage="Android.App.ActivityOptions.MakeThumbnailScaleUpAnimation (source, thumbnail, startX, startY)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("makeThumbnailScaleUpAnimation", "(Landroid/view/View;Landroid/graphics/Bitmap;II)Landroid/app/ActivityOptions;", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("makeThumbnailScaleUpAnimation", "(Landroid/view/View;Landroid/graphics/Bitmap;II)Landroid/app/ActivityOptions;", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActivityOptions</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="source" Type="Android.Views.View" />
<Parameter Name="thumbnail" Type="Android.Graphics.Bitmap" />
<Parameter Name="startX" Type="System.Int32" />
<Parameter Name="startY" Type="System.Int32" />
</Parameters>
<Docs>
<param name="source">The View that this thumbnail is animating from. This
defines the coordinate space for <var>startX</var> and <var>startY</var>.</param>
<param name="thumbnail">The bitmap that will be shown as the initial thumbnail
of the animation.</param>
<param name="startX">The x starting location of the bitmap, relative to <var>source</var>.</param>
<param name="startY">The y starting location of the bitmap, relative to <var>source</var>.</param>
<summary>Create an ActivityOptions specifying an animation where a thumbnail
is scaled from a given position to the new activity window that is
being started.</summary>
<returns>Returns a new ActivityOptions object that you can use to
supply these options as the options Bundle when starting an activity.</returns>
<remarks>
<para>Create an ActivityOptions specifying an animation where a thumbnail
is scaled from a given position to the new activity window that is
being started.</para>
<para>If the Intent this is being used with has not set its
<c>android.content.Intent#setSourceBounds Intent.setSourceBounds</c>,
those bounds will be filled in for you based on the initial
thumbnail location and size provided here.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#makeThumbnailScaleUpAnimation(android.view.View,%20android.graphics.Bitmap,%20int,%20int)" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.makeThumbnailScaleUpAnimation(android.view.View, android.graphics.Bitmap, int, int)</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
<since version="Added in API level 16" />
</Docs>
</Member>
<Member MemberName="ModeBackgroundActivityStartAllowed">
<MemberSignature Language="C#" Value="public const Android.App.BackgroundActivityStartMode ModeBackgroundActivityStartAllowed = 1;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.App.BackgroundActivityStartMode ModeBackgroundActivityStartAllowed = (1)" />
<MemberSignature Language="DocId" Value="F:Android.App.ActivityOptions.ModeBackgroundActivityStartAllowed" />
<MemberSignature Language="F#" Value="val mutable ModeBackgroundActivityStartAllowed : Android.App.BackgroundActivityStartMode" Usage="Android.App.ActivityOptions.ModeBackgroundActivityStartAllowed" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("MODE_BACKGROUND_ACTIVITY_START_ALLOWED", ApiSince=34)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("MODE_BACKGROUND_ACTIVITY_START_ALLOWED", ApiSince=34)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.App.BackgroundActivityStartMode enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.App.BackgroundActivityStartMode enum directly instead of this field.", true)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android34.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android34.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.BackgroundActivityStartMode</ReturnType>
</ReturnValue>
<MemberValue>1</MemberValue>
<Docs>
<summary>Allow the <c>PendingIntent</c> to use the background activity start privileges.</summary>
<remarks>
<para>Allow the <c>PendingIntent</c> to use the background activity start privileges.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#MODE_BACKGROUND_ACTIVITY_START_ALLOWED" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.MODE_BACKGROUND_ACTIVITY_START_ALLOWED</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ModeBackgroundActivityStartDenied">
<MemberSignature Language="C#" Value="public const Android.App.BackgroundActivityStartMode ModeBackgroundActivityStartDenied = 2;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.App.BackgroundActivityStartMode ModeBackgroundActivityStartDenied = (2)" />
<MemberSignature Language="DocId" Value="F:Android.App.ActivityOptions.ModeBackgroundActivityStartDenied" />
<MemberSignature Language="F#" Value="val mutable ModeBackgroundActivityStartDenied : Android.App.BackgroundActivityStartMode" Usage="Android.App.ActivityOptions.ModeBackgroundActivityStartDenied" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("MODE_BACKGROUND_ACTIVITY_START_DENIED", ApiSince=34)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("MODE_BACKGROUND_ACTIVITY_START_DENIED", ApiSince=34)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.App.BackgroundActivityStartMode enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.App.BackgroundActivityStartMode enum directly instead of this field.", true)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android34.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android34.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.BackgroundActivityStartMode</ReturnType>
</ReturnValue>
<MemberValue>2</MemberValue>
<Docs>
<summary>Deny the <c>PendingIntent</c> to use the background activity start privileges.</summary>
<remarks>
<para>Deny the <c>PendingIntent</c> to use the background activity start privileges.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#MODE_BACKGROUND_ACTIVITY_START_DENIED" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.MODE_BACKGROUND_ACTIVITY_START_DENIED</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the
<format type="text/html"><a href="https://developers.google.com/terms/site-policies" title="Android Open Source Project">Android Open Source Project</a></format>
and used according to terms described in the
<format type="text/html"><a href="https://creativecommons.org/licenses/by/2.5/" title="Creative Commons 2.5 Attribution License">Creative Commons 2.5 Attribution License.</a></format></para>
</remarks>
</Docs>
</Member>
<Member MemberName="ModeBackgroundActivityStartSystemDefined">
<MemberSignature Language="C#" Value="public const Android.App.BackgroundActivityStartMode ModeBackgroundActivityStartSystemDefined = 0;" />
<MemberSignature Language="ILAsm" Value=".field public static literal valuetype Android.App.BackgroundActivityStartMode ModeBackgroundActivityStartSystemDefined = (0)" />
<MemberSignature Language="DocId" Value="F:Android.App.ActivityOptions.ModeBackgroundActivityStartSystemDefined" />
<MemberSignature Language="F#" Value="val mutable ModeBackgroundActivityStartSystemDefined : Android.App.BackgroundActivityStartMode" Usage="Android.App.ActivityOptions.ModeBackgroundActivityStartSystemDefined" />
<MemberType>Field</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("MODE_BACKGROUND_ACTIVITY_START_SYSTEM_DEFINED", ApiSince=34)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("MODE_BACKGROUND_ACTIVITY_START_SYSTEM_DEFINED", ApiSince=34)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("This constant will be removed in the future version. Use Android.App.BackgroundActivityStartMode enum directly instead of this field.", true)]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("This constant will be removed in the future version. Use Android.App.BackgroundActivityStartMode enum directly instead of this field.", true)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android34.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android34.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.BackgroundActivityStartMode</ReturnType>
</ReturnValue>
<MemberValue>0</MemberValue>
<Docs>
<summary>No explicit value chosen.</summary>
<remarks>
<para>No explicit value chosen. The system will decide whether to grant privileges.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActivityOptions#MODE_BACKGROUND_ACTIVITY_START_SYSTEM_DEFINED" title="Reference documentation">Java documentation for <code>android.app.ActivityOptions.MODE_BACKGROUND_ACTIVITY_START_SYSTEM_DEFINED</code>.</a>
</format>
</para>
<para>
Portions of this page are modifications based on work created and shared by the