This repository was archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathFragment.xml
More file actions
5312 lines (5305 loc) · 360 KB
/
Fragment.xml
File metadata and controls
5312 lines (5305 loc) · 360 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
<Type Name="Fragment" FullName="Android.App.Fragment">
<TypeSignature Language="C#" Value="public class Fragment : Java.Lang.Object, Android.Content.IComponentCallbacks2, Android.Views.View.IOnCreateContextMenuListener, IDisposable, Java.Interop.IJavaPeerable" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit Fragment extends Java.Lang.Object implements class Android.Content.IComponentCallbacks, class Android.Content.IComponentCallbacks2, class Android.Runtime.IJavaObject, class Android.Views.View/IOnCreateContextMenuListener, class Java.Interop.IJavaPeerable, class System.IDisposable" />
<TypeSignature Language="DocId" Value="T:Android.App.Fragment" />
<TypeSignature Language="F#" Value="type Fragment = class
 inherit Object
 interface IComponentCallbacks2
 interface IComponentCallbacks
 interface IJavaObject
 interface IDisposable
 interface IJavaPeerable
 interface View.IOnCreateContextMenuListener" />
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>Java.Lang.Object</BaseTypeName>
</Base>
<Interfaces>
<Interface>
<InterfaceName>Android.Content.IComponentCallbacks</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Android.Content.IComponentCallbacks2</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Android.Runtime.IJavaObject</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Android.Views.View+IOnCreateContextMenuListener</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Java.Interop.IJavaPeerable</InterfaceName>
</Interface>
<Interface>
<InterfaceName>System.IDisposable</InterfaceName>
</Interface>
</Interfaces>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("android/app/Fragment", DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/app/Fragment", DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0", "This class is obsoleted in this android platform")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0", "This class is obsoleted in this android platform")>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="11">
<summary>A Fragment is a piece of an application's user interface or behavior
that can be placed in an <c>Activity</c>.</summary>
<remarks>
<para>A Fragment is a piece of an application's user interface or behavior
that can be placed in an <c>Activity</c>. Interaction with fragments
is done through <c>FragmentManager</c>, which can be obtained via
<c>Activity#getFragmentManager() Activity.getFragmentManager()</c> and
<c>Fragment#getFragmentManager() Fragment.getFragmentManager()</c>.</para>
<para>The Fragment class can be used many ways to achieve a wide variety of
results. In its core, it represents a particular operation or interface
that is running within a larger <c>Activity</c>. A Fragment is closely
tied to the Activity it is in, and can not be used apart from one. Though
Fragment defines its own lifecycle, that lifecycle is dependent on its
activity: if the activity is stopped, no fragments inside of it can be
started; when the activity is destroyed, all fragments will be destroyed.</para>
<para>All subclasses of Fragment must include a public no-argument constructor.
The framework will often re-instantiate a fragment class when needed,
in particular during state restore, and needs to be able to find this
constructor to instantiate it. If the no-argument constructor is not
available, a runtime exception will occur in some cases during state
restore.</para>
<para>Topics covered here:
<ol>
<li>Older Platforms<li>Lifecycle<li>Layout<li>Back Stack</ol>
<div class="special reference">
<h3>Developer Guides</h3></para>
<para>For more information about using fragments, read the
<see href="https://developer.android.com/guide/components/fragments.html">Fragments</see> developer guide.</para>
<para></div>
"OlderPlatforms"><h3>Older Platforms</h3>
While the Fragment API was introduced in
<c>android.os.Build.VERSION_CODES#HONEYCOMB</c>, a version of the API
at is also available for use on older platforms through
<c>androidx.fragment.app.FragmentActivity</c>. See the blog post
<see href="http://android-developers.blogspot.com/2011/03/fragments-for-all.html">
Fragments For All</see> for more details.
"Lifecycle"><h3>Lifecycle</h3></para>
<para>Though a Fragment's lifecycle is tied to its owning activity, it has
its own wrinkle on the standard activity lifecycle. It includes basic
activity lifecycle methods such as <c>#onResume</c>, but also important
are methods related to interactions with the activity and UI generation.</para>
<para>The core series of lifecycle methods that are called to bring a fragment
up to resumed state (interacting with the user) are:
<ol>
<li> <c>#onAttach</c> called once the fragment is associated with its activity.
<li> <c>#onCreate</c> called to do initial creation of the fragment.
<li> <c>#onCreateView</c> creates and returns the view hierarchy associated
with the fragment.
<li> <c>#onActivityCreated</c> tells the fragment that its activity has
completed its own <c>Activity#onCreate Activity.onCreate()</c>.
<li> <c>#onViewStateRestored</c> tells the fragment that all of the saved
state of its view hierarchy has been restored.
<li> <c>#onStart</c> makes the fragment visible to the user (based on its
containing activity being started).
<li> <c>#onResume</c> makes the fragment begin interacting with the user
(based on its containing activity being resumed).
</ol></para>
<para>As a fragment is no longer being used, it goes through a reverse
series of callbacks:
<ol>
<li> <c>#onPause</c> fragment is no longer interacting with the user either
because its activity is being paused or a fragment operation is modifying it
in the activity.
<li> <c>#onStop</c> fragment is no longer visible to the user either
because its activity is being stopped or a fragment operation is modifying it
in the activity.
<li> <c>#onDestroyView</c> allows the fragment to clean up resources
associated with its View.
<li> <c>#onDestroy</c> called to do final cleanup of the fragment's state.
<li> <c>#onDetach</c> called immediately prior to the fragment no longer
being associated with its activity.
</ol>
"Layout"><h3>Layout</h3></para>
<para>Fragments can be used as part of your application's layout, allowing
you to better modularize your code and more easily adjust your user
interface to the screen it is running on. As an example, we can look
at a simple program consisting of a list of items, and display of the
details of each item.</para>
<para>An activity's layout XML can include <c>&lt;fragment&gt;</c> tags
to embed fragment instances inside of the layout. For example, here is
a simple layout that embeds one fragment:</para>
<para>{</para>
<para>This member is deprecated. Use the <see href="https://developer.android.com/jetpack">Jetpack Fragment Library</see><c>androidx.fragment.app.Fragment</c> for consistent behavior across all devices
and access to <see href="https://developer.android.com/topic/libraries/architecture/lifecycle.html">Lifecycle</see>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment" title="Reference documentation">Java documentation for <code>android.app.Fragment</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 11" />
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public Fragment ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Fragment.#ctor" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register(".ctor", "()V", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register(".ctor", "()V", "")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
</Attributes>
<Parameters />
<Docs>
<summary>Default constructor.</summary>
<remarks>
<para>Default constructor. <strong>Every</strong> fragment must have an
empty constructor, so it can be instantiated when restoring its
activity's state. It is strongly recommended that subclasses do not
have other constructors with parameters, since these constructors
will not be called when the fragment is re-instantiated; instead,
arguments can be supplied by the caller with <c>#setArguments</c>
and later retrieved by the Fragment with <c>#getArguments</c>.</para>
<para>Applications should generally not implement a constructor. Prefer
<c>#onAttach(Context)</c> instead. It is the first place application code can run where
the fragment is ready to be used - the point where the fragment is actually associated with
its context. Some applications may also want to implement <c>#onInflate</c> to retrieve
attributes from a layout resource, although note this happens when the fragment is attached.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#Fragment()" title="Reference documentation">Java documentation for <code>android.app.Fragment.Fragment()</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 11" />
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected Fragment (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.Fragment.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Android.App.Fragment : nativeint * Android.Runtime.JniHandleOwnership -> Android.App.Fragment" Usage="new Android.App.Fragment (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="Activity">
<MemberSignature Language="C#" Value="public Android.App.Activity? Activity { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.App.Activity Activity" />
<MemberSignature Language="DocId" Value="P:Android.App.Fragment.Activity" />
<MemberSignature Language="F#" Value="member this.Activity : Android.App.Activity" Usage="Android.App.Fragment.Activity" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getActivity", "()Landroid/app/Activity;", "")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getActivity", "()Landroid/app/Activity;", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.Activity</ReturnType>
</ReturnValue>
<Docs>
<summary>Return the Activity this fragment is currently associated with.</summary>
<value>To be added.</value>
<remarks>
<para>Return the Activity this fragment is currently associated with.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#getActivity()" title="Reference documentation">Java documentation for <code>android.app.Fragment.getActivity()</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 11" />
</Docs>
</Member>
<Member MemberName="AllowEnterTransitionOverlap">
<MemberSignature Language="C#" Value="public virtual bool AllowEnterTransitionOverlap { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool AllowEnterTransitionOverlap" />
<MemberSignature Language="DocId" Value="P:Android.App.Fragment.AllowEnterTransitionOverlap" />
<MemberSignature Language="F#" Value="member this.AllowEnterTransitionOverlap : bool with get, set" Usage="Android.App.Fragment.AllowEnterTransitionOverlap" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getAllowEnterTransitionOverlap", "()Z", "GetGetAllowEnterTransitionOverlapHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getAllowEnterTransitionOverlap", "()Z", "GetGetAllowEnterTransitionOverlapHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setAllowEnterTransitionOverlap", "(Z)V", "GetSetAllowEnterTransitionOverlap_ZHandler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setAllowEnterTransitionOverlap", "(Z)V", "GetSetAllowEnterTransitionOverlap_ZHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<param name="allow">true to start the enter transition when possible or false to
wait until the exiting transition completes.</param>
<summary>Returns whether the exit transition and enter transition overlap or not. -or- Sets whether the exit transition and enter transition overlap or not.</summary>
<value>true when the enter transition should start as soon as possible or false to
when it should wait until the exiting transition completes.</value>
<remarks>
<para>Property getter documentation:</para>
<para>Returns whether the exit transition and enter transition overlap or not.
When true, the enter transition will start as soon as possible. When false, the
enter transition will wait until the exit transition completes before starting.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#getAllowEnterTransitionOverlap()" title="Reference documentation">Java documentation for <code>android.app.Fragment.getAllowEnterTransitionOverlap()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para>Sets whether the exit transition and enter transition overlap or not.
When true, the enter transition will start as soon as possible. When false, the
enter transition will wait until the exit transition completes before starting.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#setAllowEnterTransitionOverlap(boolean)" title="Reference documentation">Java documentation for <code>android.app.Fragment.setAllowEnterTransitionOverlap(boolean)</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="AllowReturnTransitionOverlap">
<MemberSignature Language="C#" Value="public virtual bool AllowReturnTransitionOverlap { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool AllowReturnTransitionOverlap" />
<MemberSignature Language="DocId" Value="P:Android.App.Fragment.AllowReturnTransitionOverlap" />
<MemberSignature Language="F#" Value="member this.AllowReturnTransitionOverlap : bool with get, set" Usage="Android.App.Fragment.AllowReturnTransitionOverlap" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getAllowReturnTransitionOverlap", "()Z", "GetGetAllowReturnTransitionOverlapHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getAllowReturnTransitionOverlap", "()Z", "GetGetAllowReturnTransitionOverlapHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setAllowReturnTransitionOverlap", "(Z)V", "GetSetAllowReturnTransitionOverlap_ZHandler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setAllowReturnTransitionOverlap", "(Z)V", "GetSetAllowReturnTransitionOverlap_ZHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<param name="allow">true to start the reenter transition when possible or false to wait until the
return transition completes.</param>
<summary>Returns whether the return transition and reenter transition overlap or not. -or- Sets whether the return transition and reenter transition overlap or not.</summary>
<value>true to start the reenter transition when possible or false to wait until the
return transition completes.</value>
<remarks>
<para>Property getter documentation:</para>
<para>Returns whether the return transition and reenter transition overlap or not.
When true, the reenter transition will start as soon as possible. When false, the
reenter transition will wait until the return transition completes before starting.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#getAllowReturnTransitionOverlap()" title="Reference documentation">Java documentation for <code>android.app.Fragment.getAllowReturnTransitionOverlap()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para>Sets whether the return transition and reenter transition overlap or not.
When true, the reenter transition will start as soon as possible. When false, the
reenter transition will wait until the return transition completes before starting.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#setAllowReturnTransitionOverlap(boolean)" title="Reference documentation">Java documentation for <code>android.app.Fragment.setAllowReturnTransitionOverlap(boolean)</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="Arguments">
<MemberSignature Language="C#" Value="public Android.OS.Bundle? Arguments { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.OS.Bundle Arguments" />
<MemberSignature Language="DocId" Value="P:Android.App.Fragment.Arguments" />
<MemberSignature Language="F#" Value="member this.Arguments : Android.OS.Bundle with get, set" Usage="Android.App.Fragment.Arguments" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getArguments", "()Landroid/os/Bundle;", "")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getArguments", "()Landroid/os/Bundle;", "")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setArguments", "(Landroid/os/Bundle;)V", "GetSetArguments_Landroid_os_Bundle_Handler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setArguments", "(Landroid/os/Bundle;)V", "GetSetArguments_Landroid_os_Bundle_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.OS.Bundle</ReturnType>
</ReturnValue>
<Docs>
<summary>Return the arguments supplied to <c>#setArguments</c>, if any. -or- Supply the construction arguments for this fragment.</summary>
<value>To be added.</value>
<remarks>
<para>Property getter documentation:</para>
<para>Return the arguments supplied to <c>#setArguments</c>, if any.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#getArguments()" title="Reference documentation">Java documentation for <code>android.app.Fragment.getArguments()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para>Supply the construction arguments for this fragment.
The arguments supplied here will be retained across fragment destroy and
creation.</para>
<para>This method cannot be called if the fragment is added to a FragmentManager and
if <c>#isStateSaved()</c> would return true. Prior to <c>Build.VERSION_CODES#O</c>,
this method may only be called if the fragment has not yet been added to a FragmentManager.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#setArguments(android.os.Bundle)" title="Reference documentation">Java documentation for <code>android.app.Fragment.setArguments(android.os.Bundle)</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 11" />
</Docs>
</Member>
<Member MemberName="ChildFragmentManager">
<MemberSignature Language="C#" Value="public Android.App.FragmentManager? ChildFragmentManager { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.App.FragmentManager ChildFragmentManager" />
<MemberSignature Language="DocId" Value="P:Android.App.Fragment.ChildFragmentManager" />
<MemberSignature Language="F#" Value="member this.ChildFragmentManager : Android.App.FragmentManager" Usage="Android.App.Fragment.ChildFragmentManager" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getChildFragmentManager", "()Landroid/app/FragmentManager;", "")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getChildFragmentManager", "()Landroid/app/FragmentManager;", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.FragmentManager</ReturnType>
</ReturnValue>
<Docs>
<summary>Return a private FragmentManager for placing and managing Fragments
inside of this Fragment.</summary>
<value>To be added.</value>
<remarks>
<para>Return a private FragmentManager for placing and managing Fragments
inside of this Fragment.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#getChildFragmentManager()" title="Reference documentation">Java documentation for <code>android.app.Fragment.getChildFragmentManager()</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 17" />
</Docs>
</Member>
<Member MemberName="Context">
<MemberSignature Language="C#" Value="public virtual Android.Content.Context? Context { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Content.Context Context" />
<MemberSignature Language="DocId" Value="P:Android.App.Fragment.Context" />
<MemberSignature Language="F#" Value="member this.Context : Android.Content.Context" Usage="Android.App.Fragment.Context" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.SupportedOSPlatform("android23.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.SupportedOSPlatform("android23.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getContext", "()Landroid/content/Context;", "GetGetContextHandler", ApiSince=23)]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getContext", "()Landroid/content/Context;", "GetGetContextHandler", ApiSince=23)>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Content.Context</ReturnType>
</ReturnValue>
<Docs>
<summary>Return the <c>Context</c> this fragment is currently associated with.</summary>
<value>To be added.</value>
<remarks>
<para>Return the <c>Context</c> this fragment is currently associated with.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#getContext()" title="Reference documentation">Java documentation for <code>android.app.Fragment.getContext()</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="Dump">
<MemberSignature Language="C#" Value="public virtual void Dump (string? prefix, Java.IO.FileDescriptor? fd, Java.IO.PrintWriter? writer, string[]? args);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Dump(string prefix, class Java.IO.FileDescriptor fd, class Java.IO.PrintWriter writer, string[] args) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Fragment.Dump(System.String,Java.IO.FileDescriptor,Java.IO.PrintWriter,System.String[])" />
<MemberSignature Language="F#" Value="abstract member Dump : string * Java.IO.FileDescriptor * Java.IO.PrintWriter * string[] -> unit
override this.Dump : string * Java.IO.FileDescriptor * Java.IO.PrintWriter * string[] -> unit" Usage="fragment.Dump (prefix, fd, writer, args)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("dump", "(Ljava/lang/String;Ljava/io/FileDescriptor;Ljava/io/PrintWriter;[Ljava/lang/String;)V", "GetDump_Ljava_lang_String_Ljava_io_FileDescriptor_Ljava_io_PrintWriter_arrayLjava_lang_String_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("dump", "(Ljava/lang/String;Ljava/io/FileDescriptor;Ljava/io/PrintWriter;[Ljava/lang/String;)V", "GetDump_Ljava_lang_String_Ljava_io_FileDescriptor_Ljava_io_PrintWriter_arrayLjava_lang_String_Handler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="prefix" Type="System.String" />
<Parameter Name="fd" Type="Java.IO.FileDescriptor" />
<Parameter Name="writer" Type="Java.IO.PrintWriter" />
<Parameter Name="args" Type="System.String[]" />
</Parameters>
<Docs>
<param name="prefix">Text to print at the front of each line.</param>
<param name="fd">The raw file descriptor that the dump is being sent to.</param>
<param name="writer">The PrintWriter to which you should dump your state. This will be
closed for you after you return.</param>
<param name="args">additional arguments to the dump request.</param>
<summary>Print the Fragments's state into the given stream.</summary>
<remarks>
<para>Print the Fragments's state into the given stream.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#dump(java.lang.String,%20java.io.FileDescriptor,%20java.io.PrintWriter,%20java.lang.String[])" title="Reference documentation">Java documentation for <code>android.app.Fragment.dump(java.lang.String, java.io.FileDescriptor, java.io.PrintWriter, 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>
<since version="Added in API level 11" />
</Docs>
</Member>
<Member MemberName="EnterTransition">
<MemberSignature Language="C#" Value="public virtual Android.Transitions.Transition? EnterTransition { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Transitions.Transition EnterTransition" />
<MemberSignature Language="DocId" Value="P:Android.App.Fragment.EnterTransition" />
<MemberSignature Language="F#" Value="member this.EnterTransition : Android.Transitions.Transition with get, set" Usage="Android.App.Fragment.EnterTransition" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getEnterTransition", "()Landroid/transition/Transition;", "GetGetEnterTransitionHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getEnterTransition", "()Landroid/transition/Transition;", "GetGetEnterTransitionHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setEnterTransition", "(Landroid/transition/Transition;)V", "GetSetEnterTransition_Landroid_transition_Transition_Handler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setEnterTransition", "(Landroid/transition/Transition;)V", "GetSetEnterTransition_Landroid_transition_Transition_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Transitions.Transition</ReturnType>
</ReturnValue>
<Docs>
<param name="transition">The Transition to use to move Views into the initial Scene.</param>
<summary>Returns the Transition that will be used to move Views into the initial scene. -or- Sets the Transition that will be used to move Views into the initial scene.</summary>
<value>the Transition to use to move Views into the initial Scene.</value>
<remarks>
<para>Property getter documentation:</para>
<para>Returns the Transition that will be used to move Views into the initial scene. The entering
Views will be those that are regular Views or ViewGroups that have
<c>ViewGroup#isTransitionGroup</c> return true. Typical Transitions will extend
<c>android.transition.Visibility</c> as entering is governed by changing visibility from
<c>View#INVISIBLE</c> to <c>View#VISIBLE</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#getEnterTransition()" title="Reference documentation">Java documentation for <code>android.app.Fragment.getEnterTransition()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para>Sets the Transition that will be used to move Views into the initial scene. The entering
Views will be those that are regular Views or ViewGroups that have
<c>ViewGroup#isTransitionGroup</c> return true. Typical Transitions will extend
<c>android.transition.Visibility</c> as entering is governed by changing visibility from
<c>View#INVISIBLE</c> to <c>View#VISIBLE</c>. If <c>transition</c> is null,
entering Views will remain unaffected.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#setEnterTransition(android.transition.Transition)" title="Reference documentation">Java documentation for <code>android.app.Fragment.setEnterTransition(android.transition.Transition)</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="Equals">
<MemberSignature Language="C#" Value="public override sealed bool Equals (Java.Lang.Object? o);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance bool Equals(class Java.Lang.Object o) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Fragment.Equals(Java.Lang.Object)" />
<MemberSignature Language="F#" Value="override this.Equals : Java.Lang.Object -> bool" Usage="fragment.Equals o" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("equals", "(Ljava/lang/Object;)Z", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("equals", "(Ljava/lang/Object;)Z", "")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("deprecated")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("deprecated")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="o" Type="Java.Lang.Object" />
</Parameters>
<Docs>
<param name="o">the object to compare this instance with.</param>
<summary>Subclasses can not override equals().</summary>
<returns>To be added.</returns>
<remarks>
<para>Subclasses can not override equals().</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#equals(java.lang.Object)" title="Reference documentation">Java documentation for <code>android.app.Fragment.equals(java.lang.Object)</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 11" />
</Docs>
</Member>
<Member MemberName="ExitTransition">
<MemberSignature Language="C#" Value="public virtual Android.Transitions.Transition? ExitTransition { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Transitions.Transition ExitTransition" />
<MemberSignature Language="DocId" Value="P:Android.App.Fragment.ExitTransition" />
<MemberSignature Language="F#" Value="member this.ExitTransition : Android.Transitions.Transition with get, set" Usage="Android.App.Fragment.ExitTransition" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getExitTransition", "()Landroid/transition/Transition;", "GetGetExitTransitionHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getExitTransition", "()Landroid/transition/Transition;", "GetGetExitTransitionHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setExitTransition", "(Landroid/transition/Transition;)V", "GetSetExitTransition_Landroid_transition_Transition_Handler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setExitTransition", "(Landroid/transition/Transition;)V", "GetSetExitTransition_Landroid_transition_Transition_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Transitions.Transition</ReturnType>
</ReturnValue>
<Docs>
<param name="transition">The Transition to use to move Views out of the Scene when the Fragment
is being closed not due to popping the back stack.</param>
<summary>Returns the Transition that will be used to move Views out of the scene when the
fragment is removed, hidden, or detached when not popping the back stack. -or- Sets the Transition that will be used to move Views out of the scene when the
fragment is removed, hidden, or detached when not popping the back stack.</summary>
<value>the Transition to use to move Views out of the Scene when the Fragment
is being closed not due to popping the back stack.</value>
<remarks>
<para>Property getter documentation:</para>
<para>Returns the Transition that will be used to move Views out of the scene when the
fragment is removed, hidden, or detached when not popping the back stack.
The exiting Views will be those that are regular Views or ViewGroups that
have <c>ViewGroup#isTransitionGroup</c> return true. Typical Transitions will extend
<c>android.transition.Visibility</c> as exiting is governed by changing visibility
from <c>View#VISIBLE</c> to <c>View#INVISIBLE</c>. If transition is null, the views will
remain unaffected.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#getExitTransition()" title="Reference documentation">Java documentation for <code>android.app.Fragment.getExitTransition()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para>Sets the Transition that will be used to move Views out of the scene when the
fragment is removed, hidden, or detached when not popping the back stack.
The exiting Views will be those that are regular Views or ViewGroups that
have <c>ViewGroup#isTransitionGroup</c> return true. Typical Transitions will extend
<c>android.transition.Visibility</c> as exiting is governed by changing visibility
from <c>View#VISIBLE</c> to <c>View#INVISIBLE</c>. If transition is null, the views will
remain unaffected.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#setExitTransition(android.transition.Transition)" title="Reference documentation">Java documentation for <code>android.app.Fragment.setExitTransition(android.transition.Transition)</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="FragmentManager">
<MemberSignature Language="C#" Value="public Android.App.FragmentManager? FragmentManager { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.App.FragmentManager FragmentManager" />
<MemberSignature Language="DocId" Value="P:Android.App.Fragment.FragmentManager" />
<MemberSignature Language="F#" Value="member this.FragmentManager : Android.App.FragmentManager" Usage="Android.App.Fragment.FragmentManager" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getFragmentManager", "()Landroid/app/FragmentManager;", "")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getFragmentManager", "()Landroid/app/FragmentManager;", "")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.FragmentManager</ReturnType>
</ReturnValue>
<Docs>
<summary>Return the FragmentManager for interacting with fragments associated
with this fragment's activity.</summary>
<value>To be added.</value>
<remarks>
<para>Return the FragmentManager for interacting with fragments associated
with this fragment's activity. Note that this will be non-null slightly
before <c>#getActivity()</c>, during the time from when the fragment is
placed in a <c>FragmentTransaction</c> until it is committed and
attached to its activity.</para>
<para>If this Fragment is a child of another Fragment, the FragmentManager
returned here will be the parent's <c>#getChildFragmentManager()</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#getFragmentManager()" title="Reference documentation">Java documentation for <code>android.app.Fragment.getFragmentManager()</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 11" />
</Docs>
</Member>
<Member MemberName="GetHashCode">
<MemberSignature Language="C#" Value="public override sealed int GetHashCode ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig virtual instance int32 GetHashCode() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Fragment.GetHashCode" />
<MemberSignature Language="F#" Value="override this.GetHashCode : unit -> int" Usage="fragment.GetHashCode " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("hashCode", "()I", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("hashCode", "()I", "")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("deprecated")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("deprecated")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Subclasses can not override hashCode().</summary>
<returns>To be added.</returns>
<remarks>
<para>Subclasses can not override hashCode().</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#hashCode()" title="Reference documentation">Java documentation for <code>android.app.Fragment.hashCode()</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 11" />
</Docs>
</Member>
<Member MemberName="GetString">
<MemberSignature Language="C#" Value="public string? GetString (int resId);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance string GetString(int32 resId) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Fragment.GetString(System.Int32)" />
<MemberSignature Language="F#" Value="member this.GetString : int -> string" Usage="fragment.GetString resId" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getString", "(I)Ljava/lang/String;", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getString", "(I)Ljava/lang/String;", "")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="resId" Type="System.Int32" />
</Parameters>
<Docs>
<param name="resId">Resource id for the string</param>
<summary>Return a localized string from the application's package's
default string table.</summary>
<returns>To be added.</returns>
<remarks>
<para>Return a localized string from the application's package's
default string table.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#getString(int)" title="Reference documentation">Java documentation for <code>android.app.Fragment.getString(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 11" />
</Docs>
</Member>
<Member MemberName="GetString">
<MemberSignature Language="C#" Value="public string? GetString (int resId, params Java.Lang.Object[]? formatArgs);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance string GetString(int32 resId, class Java.Lang.Object[] formatArgs) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Fragment.GetString(System.Int32,Java.Lang.Object[])" />
<MemberSignature Language="F#" Value="member this.GetString : int * Java.Lang.Object[] -> string" Usage="fragment.GetString (resId, formatArgs)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getString", "(I[Ljava/lang/Object;)Ljava/lang/String;", "")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getString", "(I[Ljava/lang/Object;)Ljava/lang/String;", "")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="resId" Type="System.Int32" />
<Parameter Name="formatArgs" Type="Java.Lang.Object[]">
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.ParamArray]</AttributeName>
<AttributeName Language="F#">[<System.ParamArray>]</AttributeName>
</Attribute>
</Attributes>
</Parameter>
</Parameters>
<Docs>
<param name="resId">Resource id for the string</param>
<param name="formatArgs">To be added.</param>
<summary>Return a localized string from the application's package's
default string table.</summary>
<returns>To be added.</returns>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#getString(int)" title="Reference documentation">Java documentation for <code>android.app.Fragment.getString(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="GetText">
<MemberSignature Language="C#" Value="public string? GetText (int resId);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance string GetText(int32 resId) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.Fragment.GetText(System.Int32)" />
<MemberSignature Language="F#" Value="member this.GetText : int -> string" Usage="fragment.GetText resId" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")]</AttributeName>
<AttributeName Language="F#">[<System.Runtime.Versioning.ObsoletedOSPlatform("android28.0")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="resId" Type="System.Int32" />
</Parameters>
<Docs>
<param name="resId">Resource id for the CharSequence text</param>
<summary>Return a localized, styled CharSequence from the application's package's
default string table.</summary>
<returns>To be added.</returns>
<remarks>
<para>Return a localized, styled CharSequence from the application's package's
default string table.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/Fragment#getText(int)" title="Reference documentation">Java documentation for <code>android.app.Fragment.getText(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="GetTextFormatted">
<MemberSignature Language="C#" Value="public Java.Lang.ICharSequence? GetTextFormatted (int resId);" />