KeyboardShortcutGroup Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| KeyboardShortcutGroup(ICharSequence) |
Creates a keyboard shortcut group with a label and optional shortcut items. |
| KeyboardShortcutGroup(String) |
Creates a keyboard shortcut group with a label and optional shortcut items. |
| KeyboardShortcutGroup(ICharSequence, IList<KeyboardShortcutInfo>) |
Creates a keyboard shortcut group with a label and optional shortcut items. |
| KeyboardShortcutGroup(String, IList<KeyboardShortcutInfo>) |
Creates a keyboard shortcut group with a label and optional shortcut items. |
KeyboardShortcutGroup(ICharSequence)
Creates a keyboard shortcut group with a label and optional shortcut items.
[Android.Runtime.Register(".ctor", "(Ljava/lang/CharSequence;)V", "", ApiSince=24)]
public KeyboardShortcutGroup(Java.Lang.ICharSequence? label);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/CharSequence;)V", "", ApiSince=24)>]
new Android.Views.KeyboardShortcutGroup : Java.Lang.ICharSequence -> Android.Views.KeyboardShortcutGroup
Parameters
- label
- ICharSequence
The title to be used for this group, or null if there is none.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
KeyboardShortcutGroup(String)
Creates a keyboard shortcut group with a label and optional shortcut items.
[Android.Runtime.Register(".ctor", "(Ljava/lang/CharSequence;)V", "", ApiSince=24)]
public KeyboardShortcutGroup(string? label);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/CharSequence;)V", "", ApiSince=24)>]
new Android.Views.KeyboardShortcutGroup : string -> Android.Views.KeyboardShortcutGroup
Parameters
- label
- String
The System.String value used for label.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
KeyboardShortcutGroup(ICharSequence, IList<KeyboardShortcutInfo>)
Creates a keyboard shortcut group with a label and optional shortcut items.
[Android.Runtime.Register(".ctor", "(Ljava/lang/CharSequence;Ljava/util/List;)V", "", ApiSince=24)]
public KeyboardShortcutGroup(Java.Lang.ICharSequence? label, System.Collections.Generic.IList<Android.Views.KeyboardShortcutInfo> items);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/CharSequence;Ljava/util/List;)V", "", ApiSince=24)>]
new Android.Views.KeyboardShortcutGroup : Java.Lang.ICharSequence * System.Collections.Generic.IList<Android.Views.KeyboardShortcutInfo> -> Android.Views.KeyboardShortcutGroup
Parameters
- label
- ICharSequence
The title to be used for this group, or null if there is none.
- items
- IList<KeyboardShortcutInfo>
The set of items to be included.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
KeyboardShortcutGroup(String, IList<KeyboardShortcutInfo>)
Creates a keyboard shortcut group with a label and optional shortcut items.
[Android.Runtime.Register(".ctor", "(Ljava/lang/CharSequence;Ljava/util/List;)V", "", ApiSince=24)]
public KeyboardShortcutGroup(string? label, System.Collections.Generic.IList<Android.Views.KeyboardShortcutInfo> items);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/CharSequence;Ljava/util/List;)V", "", ApiSince=24)>]
new Android.Views.KeyboardShortcutGroup : string * System.Collections.Generic.IList<Android.Views.KeyboardShortcutInfo> -> Android.Views.KeyboardShortcutGroup
Parameters
- label
- String
The System.String value used for label.
- items
- IList<KeyboardShortcutInfo>
The System.Collections.Generic.IList<Android.Views.KeyboardShortcutInfo> value used for items.
- Attributes
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.