ArrayAdapter.AddAll Method
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
AddAll(Object[]) |
Adds the specified items at the end of the array. |
AddAll(ICollection) |
Adds the specified Collection at the end of the array. |
AddAll(Object[])
Adds the specified items at the end of the array.
[Android.Runtime.Register("addAll", "([Ljava/lang/Object;)V", "GetAddAll_arrayLjava_lang_Object_Handler")]
public virtual void AddAll (params Java.Lang.Object[]? items);
[<Android.Runtime.Register("addAll", "([Ljava/lang/Object;)V", "GetAddAll_arrayLjava_lang_Object_Handler")>]
abstract member AddAll : Java.Lang.Object[] -> unit
override this.AddAll : Java.Lang.Object[] -> unit
Parameters
- items
- Object[]
The items to add at the end of the array.
- Attributes
Remarks
Adds the specified items at the end of the array.
Java documentation for android.widget.ArrayAdapter.addAll(T...)
.
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
AddAll(ICollection)
Adds the specified Collection at the end of the array.
[Android.Runtime.Register("addAll", "(Ljava/util/Collection;)V", "GetAddAll_Ljava_util_Collection_Handler")]
public virtual void AddAll (System.Collections.ICollection collection);
[<Android.Runtime.Register("addAll", "(Ljava/util/Collection;)V", "GetAddAll_Ljava_util_Collection_Handler")>]
abstract member AddAll : System.Collections.ICollection -> unit
override this.AddAll : System.Collections.ICollection -> unit
Parameters
- collection
- ICollection
The Collection to add at the end of the array.
- Attributes
Remarks
Adds the specified Collection at the end of the array.
Java documentation for android.widget.ArrayAdapter.addAll(java.util.Collection<? extends T>)
.
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.