putFloatArray method

void putFloatArray(
  1. String key,
  2. List<double> value
)

Inserts a float 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 a float array object, or null

Implementation

void putFloatArray(String key, List<double> value) {
  putDoubleList(key, value);
}