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
/
ActionBar.xml
2625 lines (2621 loc) · 175 KB
/
ActionBar.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="ActionBar" FullName="Android.App.ActionBar">
<TypeSignature Language="C#" Value="public abstract class ActionBar : Java.Lang.Object" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract beforefieldinit ActionBar extends Java.Lang.Object" />
<TypeSignature Language="DocId" Value="T:Android.App.ActionBar" />
<TypeSignature Language="F#" Value="type ActionBar = 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/ActionBar", DoNotGenerateAcw=true)]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("android/app/ActionBar", DoNotGenerateAcw=true)>]</AttributeName>
</Attribute>
</Attributes>
<Docs since="11">
<summary>A primary toolbar within the activity that may display the activity title, application-level
navigation affordances, and other interactive items.</summary>
<remarks>
<para>A primary toolbar within the activity that may display the activity title, application-level
navigation affordances, and other interactive items.</para>
<para>Beginning with Android 3.0 (API level 11), the action bar appears at the top of an
activity's window when the activity uses the system's <c>android.R.style#Theme_Holo Holo</c> theme (or one of its descendant themes), which is the default.
You may otherwise add the action bar by calling <c>android.view.Window#requestFeature requestFeature(FEATURE_ACTION_BAR)</c> or by declaring it in a
custom theme with the <c>android.R.styleable#Theme_windowActionBar windowActionBar</c> property.</para>
<para>Beginning with Android L (API level 21), the action bar may be represented by any
Toolbar widget within the application layout. The application may signal to the Activity
which Toolbar should be treated as the Activity's action bar. Activities that use this
feature should use one of the supplied <c>.NoActionBar</c> themes, set the
<c>android.R.styleable#Theme_windowActionBar windowActionBar</c> attribute to <c>false</c>
or otherwise not request the window feature.</para>
<para>By adjusting the window features requested by the theme and the layouts used for
an Activity's content view, an app can use the standard system action bar on older platform
releases and the newer inline toolbars on newer platform releases. The <c>ActionBar</c>
object obtained from the Activity can be used to control either configuration transparently.</para>
<para>When using the Holo themes the action bar shows the application icon on
the left, followed by the activity title. If your activity has an options menu, you can make
select items accessible directly from the action bar as "action items". You can also
modify various characteristics of the action bar or remove it completely.</para>
<para>When using the Material themes (default in API 21 or newer) the navigation button
(formerly "Home") takes over the space previously occupied by the application icon.
Apps wishing to express a stronger branding should use their brand colors heavily
in the action bar and other application chrome or use a <c>#setLogo(int) logo</c>
in place of their standard title text.</para>
<para>From your activity, you can retrieve an instance of <c>ActionBar</c> by calling <c>android.app.Activity#getActionBar getActionBar()</c>.</para>
<para>In some cases, the action bar may be overlayed by another bar that enables contextual actions,
using an <c>android.view.ActionMode</c>. For example, when the user selects one or more items in
your activity, you can enable an action mode that offers actions specific to the selected
items, with a UI that temporarily replaces the action bar. Although the UI may occupy the
same space, the <c>android.view.ActionMode</c> APIs are distinct and independent from those for
<c>ActionBar</c>.</para>
<para><div class="special reference">
<h3>Developer Guides</h3></para>
<para>For information about how to use the action bar, including how to add action items, navigation
modes and more, read the <see href="https://developer.android.com/guide/topics/ui/actionbar.html">Action
Bar</see> developer guide.</para>
<para></div></para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar" title="Reference documentation">Java documentation for <code>android.app.ActionBar</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 ActionBar ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.#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>
</Attributes>
<Parameters />
<Docs>
<summary>
</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>
<since version="Added in API level 11" />
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected ActionBar (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.ActionBar.#ctor(System.IntPtr,Android.Runtime.JniHandleOwnership)" />
<MemberSignature Language="F#" Value="new Android.App.ActionBar : nativeint * Android.Runtime.JniHandleOwnership -> Android.App.ActionBar" Usage="new Android.App.ActionBar (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="AddOnMenuVisibilityListener">
<MemberSignature Language="C#" Value="public abstract void AddOnMenuVisibilityListener (Android.App.ActionBar.IOnMenuVisibilityListener? listener);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void AddOnMenuVisibilityListener(class Android.App.ActionBar/IOnMenuVisibilityListener listener) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.AddOnMenuVisibilityListener(Android.App.ActionBar.IOnMenuVisibilityListener)" />
<MemberSignature Language="F#" Value="abstract member AddOnMenuVisibilityListener : Android.App.ActionBar.IOnMenuVisibilityListener -> unit" Usage="actionBar.AddOnMenuVisibilityListener listener" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("addOnMenuVisibilityListener", "(Landroid/app/ActionBar$OnMenuVisibilityListener;)V", "GetAddOnMenuVisibilityListener_Landroid_app_ActionBar_OnMenuVisibilityListener_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("addOnMenuVisibilityListener", "(Landroid/app/ActionBar$OnMenuVisibilityListener;)V", "GetAddOnMenuVisibilityListener_Landroid_app_ActionBar_OnMenuVisibilityListener_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="listener" Type="Android.App.ActionBar+IOnMenuVisibilityListener" />
</Parameters>
<Docs>
<param name="listener">The new listener to add</param>
<summary>Add a listener that will respond to menu visibility change events.</summary>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#addOnMenuVisibilityListener(android.app.OnMenuVisibilityListener)" title="Reference documentation">Java documentation for <code>android.app.ActionBar.addOnMenuVisibilityListener(android.app.OnMenuVisibilityListener)</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="AddTab">
<MemberSignature Language="C#" Value="public abstract void AddTab (Android.App.ActionBar.Tab? tab);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void AddTab(class Android.App.ActionBar/Tab tab) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.AddTab(Android.App.ActionBar.Tab)" />
<MemberSignature Language="F#" Value="abstract member AddTab : Android.App.ActionBar.Tab -> unit" Usage="actionBar.AddTab tab" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("addTab", "(Landroid/app/ActionBar$Tab;)V", "GetAddTab_Landroid_app_ActionBar_Tab_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("addTab", "(Landroid/app/ActionBar$Tab;)V", "GetAddTab_Landroid_app_ActionBar_Tab_Handler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("deprecated")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("deprecated")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="tab" Type="Android.App.ActionBar+Tab" />
</Parameters>
<Docs>
<param name="tab">Tab to add</param>
<summary>Add a tab for use in tabbed navigation mode.</summary>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#addTab(android.app.Tab)" title="Reference documentation">Java documentation for <code>android.app.ActionBar.addTab(android.app.Tab)</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="AddTab">
<MemberSignature Language="C#" Value="public abstract void AddTab (Android.App.ActionBar.Tab? tab, bool setSelected);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void AddTab(class Android.App.ActionBar/Tab tab, bool setSelected) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.AddTab(Android.App.ActionBar.Tab,System.Boolean)" />
<MemberSignature Language="F#" Value="abstract member AddTab : Android.App.ActionBar.Tab * bool -> unit" Usage="actionBar.AddTab (tab, setSelected)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("addTab", "(Landroid/app/ActionBar$Tab;Z)V", "GetAddTab_Landroid_app_ActionBar_Tab_ZHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("addTab", "(Landroid/app/ActionBar$Tab;Z)V", "GetAddTab_Landroid_app_ActionBar_Tab_ZHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("deprecated")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("deprecated")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="tab" Type="Android.App.ActionBar+Tab" />
<Parameter Name="setSelected" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="tab">Tab to add</param>
<param name="setSelected">True if the added tab should become the selected tab.</param>
<summary>Add a tab for use in tabbed navigation mode.</summary>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#addTab(android.app.Tab)" title="Reference documentation">Java documentation for <code>android.app.ActionBar.addTab(android.app.Tab)</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="AddTab">
<MemberSignature Language="C#" Value="public abstract void AddTab (Android.App.ActionBar.Tab? tab, int position);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void AddTab(class Android.App.ActionBar/Tab tab, int32 position) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.AddTab(Android.App.ActionBar.Tab,System.Int32)" />
<MemberSignature Language="F#" Value="abstract member AddTab : Android.App.ActionBar.Tab * int -> unit" Usage="actionBar.AddTab (tab, position)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("addTab", "(Landroid/app/ActionBar$Tab;I)V", "GetAddTab_Landroid_app_ActionBar_Tab_IHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("addTab", "(Landroid/app/ActionBar$Tab;I)V", "GetAddTab_Landroid_app_ActionBar_Tab_IHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("deprecated")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("deprecated")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="tab" Type="Android.App.ActionBar+Tab" />
<Parameter Name="position" Type="System.Int32" />
</Parameters>
<Docs>
<param name="tab">Tab to add</param>
<param name="position">The new position of the tab</param>
<summary>Add a tab for use in tabbed navigation mode.</summary>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#addTab(android.app.Tab)" title="Reference documentation">Java documentation for <code>android.app.ActionBar.addTab(android.app.Tab)</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="AddTab">
<MemberSignature Language="C#" Value="public abstract void AddTab (Android.App.ActionBar.Tab? tab, int position, bool setSelected);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void AddTab(class Android.App.ActionBar/Tab tab, int32 position, bool setSelected) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.AddTab(Android.App.ActionBar.Tab,System.Int32,System.Boolean)" />
<MemberSignature Language="F#" Value="abstract member AddTab : Android.App.ActionBar.Tab * int * bool -> unit" Usage="actionBar.AddTab (tab, position, setSelected)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("addTab", "(Landroid/app/ActionBar$Tab;IZ)V", "GetAddTab_Landroid_app_ActionBar_Tab_IZHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("addTab", "(Landroid/app/ActionBar$Tab;IZ)V", "GetAddTab_Landroid_app_ActionBar_Tab_IZHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("deprecated")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("deprecated")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="tab" Type="Android.App.ActionBar+Tab" />
<Parameter Name="position" Type="System.Int32" />
<Parameter Name="setSelected" Type="System.Boolean" />
</Parameters>
<Docs>
<param name="tab">Tab to add</param>
<param name="position">The new position of the tab</param>
<param name="setSelected">True if the added tab should become the selected tab.</param>
<summary>Add a tab for use in tabbed navigation mode.</summary>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#addTab(android.app.Tab)" title="Reference documentation">Java documentation for <code>android.app.ActionBar.addTab(android.app.Tab)</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="CustomView">
<MemberSignature Language="C#" Value="public abstract Android.Views.View? CustomView { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Android.Views.View CustomView" />
<MemberSignature Language="DocId" Value="P:Android.App.ActionBar.CustomView" />
<MemberSignature Language="F#" Value="member this.CustomView : Android.Views.View with get, set" Usage="Android.App.ActionBar.CustomView" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getCustomView", "()Landroid/view/View;", "GetGetCustomViewHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getCustomView", "()Landroid/view/View;", "GetGetCustomViewHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setCustomView", "(Landroid/view/View;)V", "GetSetCustomView_Landroid_view_View_Handler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setCustomView", "(Landroid/view/View;)V", "GetSetCustomView_Landroid_view_View_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.Views.View</ReturnType>
</ReturnValue>
<Docs>
<summary>
</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>
<since version="Added in API level 11" />
</Docs>
</Member>
<Member MemberName="DisplayOptions">
<MemberSignature Language="C#" Value="public abstract Android.App.ActionBarDisplayOptions DisplayOptions { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype Android.App.ActionBarDisplayOptions DisplayOptions" />
<MemberSignature Language="DocId" Value="P:Android.App.ActionBar.DisplayOptions" />
<MemberSignature Language="F#" Value="member this.DisplayOptions : Android.App.ActionBarDisplayOptions with get, set" Usage="Android.App.ActionBar.DisplayOptions" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getDisplayOptions", "()I", "GetGetDisplayOptionsHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getDisplayOptions", "()I", "GetGetDisplayOptionsHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setDisplayOptions", "(I)V", "GetSetDisplayOptions_IHandler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setDisplayOptions", "(I)V", "GetSetDisplayOptions_IHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActionBarDisplayOptions</ReturnType>
</ReturnValue>
<Docs>
<summary>
</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>
<since version="Added in API level 11" />
</Docs>
</Member>
<Member MemberName="Elevation">
<MemberSignature Language="C#" Value="public virtual float Elevation { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance float32 Elevation" />
<MemberSignature Language="DocId" Value="P:Android.App.ActionBar.Elevation" />
<MemberSignature Language="F#" Value="member this.Elevation : single with get, set" Usage="Android.App.ActionBar.Elevation" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getElevation", "()F", "GetGetElevationHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getElevation", "()F", "GetGetElevationHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setElevation", "(F)V", "GetSetElevation_FHandler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setElevation", "(F)V", "GetSetElevation_FHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Single</ReturnType>
</ReturnValue>
<Docs>
<param name="elevation">Elevation value in pixels</param>
<summary>Get the Z-axis elevation of the action bar in pixels. -or- Set the Z-axis elevation of the action bar in pixels.</summary>
<value>Elevation value in pixels</value>
<remarks>
<para>Property getter documentation:</para>
<para>Get the Z-axis elevation of the action bar in pixels.</para>
<para>The action bar's elevation is the distance it is placed from its parent surface. Higher
values are closer to the user.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#getElevation()" title="Reference documentation">Java documentation for <code>android.app.ActionBar.getElevation()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para>Set the Z-axis elevation of the action bar in pixels.</para>
<para>The action bar's elevation is the distance it is placed from its parent surface. Higher
values are closer to the user.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#setElevation(float)" title="Reference documentation">Java documentation for <code>android.app.ActionBar.setElevation(float)</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="GetTabAt">
<MemberSignature Language="C#" Value="public abstract Android.App.ActionBar.Tab? GetTabAt (int index);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Android.App.ActionBar/Tab GetTabAt(int32 index) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.GetTabAt(System.Int32)" />
<MemberSignature Language="F#" Value="abstract member GetTabAt : int -> Android.App.ActionBar.Tab" Usage="actionBar.GetTabAt index" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("getTabAt", "(I)Landroid/app/ActionBar$Tab;", "GetGetTabAt_IHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("getTabAt", "(I)Landroid/app/ActionBar$Tab;", "GetGetTabAt_IHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("deprecated")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("deprecated")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActionBar+Tab</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">Index value in the range 0-get</param>
<summary>Returns the tab at the specified index.</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 11" />
</Docs>
</Member>
<Member MemberName="Height">
<MemberSignature Language="C#" Value="public abstract int Height { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 Height" />
<MemberSignature Language="DocId" Value="P:Android.App.ActionBar.Height" />
<MemberSignature Language="F#" Value="member this.Height : int" Usage="Android.App.ActionBar.Height" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getHeight", "()I", "GetGetHeightHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getHeight", "()I", "GetGetHeightHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Retrieve the current height of the ActionBar.</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>
<since version="Added in API level 11" />
</Docs>
</Member>
<Member MemberName="Hide">
<MemberSignature Language="C#" Value="public abstract void Hide ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void Hide() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.Hide" />
<MemberSignature Language="F#" Value="abstract member Hide : unit -> unit" Usage="actionBar.Hide " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("hide", "()V", "GetHideHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("hide", "()V", "GetHideHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Hide the ActionBar if it is currently showing.</summary>
<remarks>
<para>Hide the ActionBar if it is currently showing.
If the window hosting the ActionBar does not have the feature
<c>Window#FEATURE_ACTION_BAR_OVERLAY</c> it will resize application
content to fit the new space available.</para>
<para>Instead of calling this function directly, you can also cause an
ActionBar using the overlay feature to hide through
<c>View#SYSTEM_UI_FLAG_FULLSCREEN View.SYSTEM_UI_FLAG_FULLSCREEN</c>.
Hiding the ActionBar through this system UI flag allows you to more
seamlessly hide it in conjunction with other screen decorations.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#hide()" title="Reference documentation">Java documentation for <code>android.app.ActionBar.hide()</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="HideOffset">
<MemberSignature Language="C#" Value="public virtual int HideOffset { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 HideOffset" />
<MemberSignature Language="DocId" Value="P:Android.App.ActionBar.HideOffset" />
<MemberSignature Language="F#" Value="member this.HideOffset : int with get, set" Usage="Android.App.ActionBar.HideOffset" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getHideOffset", "()I", "GetGetHideOffsetHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getHideOffset", "()I", "GetGetHideOffsetHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setHideOffset", "(I)V", "GetSetHideOffset_IHandler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setHideOffset", "(I)V", "GetSetHideOffset_IHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<param name="offset">The action bar's offset toward its fully hidden state in pixels.</param>
<summary>Return the current vertical offset of the action bar. -or- Set the current hide offset of the action bar.</summary>
<value>The action bar's offset toward its fully hidden state in pixels</value>
<remarks>
<para>Property getter documentation:</para>
<para>Return the current vertical offset of the action bar.</para>
<para>The action bar's current hide offset is the distance that the action bar is currently
scrolled offscreen in pixels. The valid range is 0 (fully visible) to the action bar's
current measured <c>#getHeight() height</c> (fully invisible).</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#getHideOffset()" title="Reference documentation">Java documentation for <code>android.app.ActionBar.getHideOffset()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para>Set the current hide offset of the action bar.</para>
<para>The action bar's current hide offset is the distance that the action bar is currently
scrolled offscreen in pixels. The valid range is 0 (fully visible) to the action bar's
current measured <c>#getHeight() height</c> (fully invisible).</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#setHideOffset(int)" title="Reference documentation">Java documentation for <code>android.app.ActionBar.setHideOffset(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="HideOnContentScrollEnabled">
<MemberSignature Language="C#" Value="public virtual bool HideOnContentScrollEnabled { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool HideOnContentScrollEnabled" />
<MemberSignature Language="DocId" Value="P:Android.App.ActionBar.HideOnContentScrollEnabled" />
<MemberSignature Language="F#" Value="member this.HideOnContentScrollEnabled : bool with get, set" Usage="Android.App.ActionBar.HideOnContentScrollEnabled" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("isHideOnContentScrollEnabled", "()Z", "GetIsHideOnContentScrollEnabledHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("isHideOnContentScrollEnabled", "()Z", "GetIsHideOnContentScrollEnabledHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setHideOnContentScrollEnabled", "(Z)V", "GetSetHideOnContentScrollEnabled_ZHandler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setHideOnContentScrollEnabled", "(Z)V", "GetSetHideOnContentScrollEnabled_ZHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<param name="hideOnContentScroll">true to enable hiding on content scroll.</param>
<summary>Return whether the action bar is configured to scroll out of sight along with
a <c>View#setNestedScrollingEnabled(boolean) nested scrolling child</c>. -or- Enable hiding the action bar on content scroll.</summary>
<value>true if hide-on-content-scroll is enabled</value>
<remarks>
<para>Property getter documentation:</para>
<para>Return whether the action bar is configured to scroll out of sight along with
a <c>View#setNestedScrollingEnabled(boolean) nested scrolling child</c>.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#isHideOnContentScrollEnabled()" title="Reference documentation">Java documentation for <code>android.app.ActionBar.isHideOnContentScrollEnabled()</code>.</a>
</format>
</para>
<para>Property setter documentation:</para>
<para>Enable hiding the action bar on content scroll.</para>
<para>If enabled, the action bar will scroll out of sight along with a
<c>View#setNestedScrollingEnabled(boolean) nested scrolling child</c> view's content.
The action bar must be in <c>Window#FEATURE_ACTION_BAR_OVERLAY overlay mode</c>
to enable hiding on content scroll.</para>
<para>When partially scrolled off screen the action bar is considered
<c>#hide() hidden</c>. A call to <c>#show() show</c> will cause it to return to full view.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#setHideOnContentScrollEnabled(boolean)" title="Reference documentation">Java documentation for <code>android.app.ActionBar.setHideOnContentScrollEnabled(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>
<altmember cref="P:Android.App.ActionBar.HideOnContentScrollEnabled" />
</Docs>
</Member>
<Member MemberName="IsShowing">
<MemberSignature Language="C#" Value="public abstract bool IsShowing { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance bool IsShowing" />
<MemberSignature Language="DocId" Value="P:Android.App.ActionBar.IsShowing" />
<MemberSignature Language="F#" Value="member this.IsShowing : bool" Usage="Android.App.ActionBar.IsShowing" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("isShowing", "()Z", "GetIsShowingHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("isShowing", "()Z", "GetIsShowingHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Docs>
<summary>
</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>
<since version="Added in API level 11" />
</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.ActionBar.JniPeerMembers" />
<MemberSignature Language="F#" Value="member this.JniPeerMembers : Java.Interop.JniPeerMembers" Usage="Android.App.ActionBar.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="MenuVisibility">
<MemberSignature Language="C#" Value="public event EventHandler<Android.App.ActionBar.MenuVisibilityEventArgs> MenuVisibility;" />
<MemberSignature Language="ILAsm" Value=".event class System.EventHandler`1<class Android.App.ActionBar/MenuVisibilityEventArgs> MenuVisibility" />
<MemberSignature Language="DocId" Value="E:Android.App.ActionBar.MenuVisibility" />
<MemberSignature Language="F#" Value="member this.MenuVisibility : EventHandler<Android.App.ActionBar.MenuVisibilityEventArgs> " Usage="member this.MenuVisibility : System.EventHandler<Android.App.ActionBar.MenuVisibilityEventArgs> " />
<MemberType>Event</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.EventHandler<Android.App.ActionBar+MenuVisibilityEventArgs></ReturnType>
</ReturnValue>
<Docs>
<summary>To be added.</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="NavigationItemCount">
<MemberSignature Language="C#" Value="public abstract int NavigationItemCount { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 NavigationItemCount" />
<MemberSignature Language="DocId" Value="P:Android.App.ActionBar.NavigationItemCount" />
<MemberSignature Language="F#" Value="member this.NavigationItemCount : int" Usage="Android.App.ActionBar.NavigationItemCount" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getNavigationItemCount", "()I", "GetGetNavigationItemCountHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getNavigationItemCount", "()I", "GetGetNavigationItemCountHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>Get the number of navigation items present in the current navigation mode.</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>
<since version="Added in API level 11" />
</Docs>
</Member>
<Member MemberName="NavigationMode">
<MemberSignature Language="C#" Value="public abstract Android.App.ActionBarNavigationMode NavigationMode { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype Android.App.ActionBarNavigationMode NavigationMode" />
<MemberSignature Language="DocId" Value="P:Android.App.ActionBar.NavigationMode" />
<MemberSignature Language="F#" Value="member this.NavigationMode : Android.App.ActionBarNavigationMode with get, set" Usage="Android.App.ActionBar.NavigationMode" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[get: Android.Runtime.Register("getNavigationMode", "()I", "GetGetNavigationModeHandler")]</AttributeName>
<AttributeName Language="F#">[<get: Android.Runtime.Register("getNavigationMode", "()I", "GetGetNavigationModeHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[set: Android.Runtime.Register("setNavigationMode", "(I)V", "GetSetNavigationMode_IHandler")]</AttributeName>
<AttributeName Language="F#">[<set: Android.Runtime.Register("setNavigationMode", "(I)V", "GetSetNavigationMode_IHandler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActionBarNavigationMode</ReturnType>
</ReturnValue>
<Docs>
<summary>Returns the current navigation mode.</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>
<since version="Added in API level 11" />
</Docs>
</Member>
<Member MemberName="NewTab">
<MemberSignature Language="C#" Value="public abstract Android.App.ActionBar.Tab? NewTab ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance class Android.App.ActionBar/Tab NewTab() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.NewTab" />
<MemberSignature Language="F#" Value="abstract member NewTab : unit -> Android.App.ActionBar.Tab" Usage="actionBar.NewTab " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("newTab", "()Landroid/app/ActionBar$Tab;", "GetNewTabHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("newTab", "()Landroid/app/ActionBar$Tab;", "GetNewTabHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("deprecated")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("deprecated")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>Android.App.ActionBar+Tab</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Create and return a new <see cref="T:Android.App.ActionBar.Tab" />.</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 11" />
<altmember cref="M:Android.App.ActionBar.AddTab(.Tab)" />
</Docs>
</Member>
<Member MemberName="RemoveAllTabs">
<MemberSignature Language="C#" Value="public abstract void RemoveAllTabs ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void RemoveAllTabs() cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.RemoveAllTabs" />
<MemberSignature Language="F#" Value="abstract member RemoveAllTabs : unit -> unit" Usage="actionBar.RemoveAllTabs " />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("removeAllTabs", "()V", "GetRemoveAllTabsHandler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("removeAllTabs", "()V", "GetRemoveAllTabsHandler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("deprecated")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("deprecated")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters />
<Docs>
<summary>Remove all tabs from the action bar and deselect the current tab.</summary>
<remarks>
<para>Remove all tabs from the action bar and deselect the current tab.</para>
<para>This member is deprecated. Action bar navigation modes are deprecated and not supported by inline
toolbar action bars. Consider using other
<see href="http://developer.android.com/design/patterns/navigation.html">common
navigation patterns</see> instead.</para>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#removeAllTabs()" title="Reference documentation">Java documentation for <code>android.app.ActionBar.removeAllTabs()</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="RemoveOnMenuVisibilityListener">
<MemberSignature Language="C#" Value="public abstract void RemoveOnMenuVisibilityListener (Android.App.ActionBar.IOnMenuVisibilityListener? listener);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void RemoveOnMenuVisibilityListener(class Android.App.ActionBar/IOnMenuVisibilityListener listener) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.RemoveOnMenuVisibilityListener(Android.App.ActionBar.IOnMenuVisibilityListener)" />
<MemberSignature Language="F#" Value="abstract member RemoveOnMenuVisibilityListener : Android.App.ActionBar.IOnMenuVisibilityListener -> unit" Usage="actionBar.RemoveOnMenuVisibilityListener listener" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("removeOnMenuVisibilityListener", "(Landroid/app/ActionBar$OnMenuVisibilityListener;)V", "GetRemoveOnMenuVisibilityListener_Landroid_app_ActionBar_OnMenuVisibilityListener_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("removeOnMenuVisibilityListener", "(Landroid/app/ActionBar$OnMenuVisibilityListener;)V", "GetRemoveOnMenuVisibilityListener_Landroid_app_ActionBar_OnMenuVisibilityListener_Handler")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="listener" Type="Android.App.ActionBar+IOnMenuVisibilityListener" />
</Parameters>
<Docs>
<param name="listener">A listener to remove that was previously added</param>
<summary>Remove a menu visibility listener.</summary>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#removeOnMenuVisibilityListener(android.app.OnMenuVisibilityListener)" title="Reference documentation">Java documentation for <code>android.app.ActionBar.removeOnMenuVisibilityListener(android.app.OnMenuVisibilityListener)</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="RemoveTab">
<MemberSignature Language="C#" Value="public abstract void RemoveTab (Android.App.ActionBar.Tab? tab);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void RemoveTab(class Android.App.ActionBar/Tab tab) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.RemoveTab(Android.App.ActionBar.Tab)" />
<MemberSignature Language="F#" Value="abstract member RemoveTab : Android.App.ActionBar.Tab -> unit" Usage="actionBar.RemoveTab tab" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Mono.Android</AssemblyName>
<AssemblyVersion>0.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Android.Runtime.Register("removeTab", "(Landroid/app/ActionBar$Tab;)V", "GetRemoveTab_Landroid_app_ActionBar_Tab_Handler")]</AttributeName>
<AttributeName Language="F#">[<Android.Runtime.Register("removeTab", "(Landroid/app/ActionBar$Tab;)V", "GetRemoveTab_Landroid_app_ActionBar_Tab_Handler")>]</AttributeName>
</Attribute>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("deprecated")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("deprecated")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="tab" Type="Android.App.ActionBar+Tab" />
</Parameters>
<Docs>
<param name="tab">The tab to remove</param>
<summary>Remove a tab from the action bar.</summary>
<remarks>
<para>
<format type="text/html">
<a href="https://developer.android.com/reference/android/app/ActionBar#removeTab(android.app.Tab)" title="Reference documentation">Java documentation for <code>android.app.ActionBar.removeTab(android.app.Tab)</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="RemoveTabAt">
<MemberSignature Language="C#" Value="public abstract void RemoveTabAt (int position);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance void RemoveTabAt(int32 position) cil managed" />
<MemberSignature Language="DocId" Value="M:Android.App.ActionBar.RemoveTabAt(System.Int32)" />