putIntArray method

void putIntArray(
  1. String key,
  2. List<int> value
)

Inserts an int array value into the mapping of this Bundle, replacing any existing value for the given key. Either key or value may be null.

@param key a String, or null @param value an int array object, or null

Implementation

void putIntArray(String key, List<int> value) {
  putIntList(key, value);
}