Example usage for Java android.util ArrayMap fields, constructors, methods, implement or subclass
The text is from its open source code.
ArrayMap(int capacity) Create a new ArrayMap with a given initial capacity. | |
ArrayMap(ArrayMap Create a new ArrayMap with the mappings from the given ArrayMap. | |
ArrayMap() Create a new empty ArrayMap. |
Set | entrySet() Return a java.util.Set for iterating over and interacting with all mappings in the array map. |
V | get(Object key) Retrieve a value from the array. |
boolean | isEmpty() Return true if the array map contains no items. |
Set | keySet() Return a java.util.Set for iterating over and interacting with all keys in the array map. |
V | put(K key, V value) Add a new value to the array map. |
V | remove(Object key) Remove an existing key from the array map. |
int | size() Return the number of items in this array map. |
Collection | values() Return a java.util.Collection for iterating over and interacting with all values in the array map. |