putFloat method

void putFloat(
  1. String key,
  2. double value
)

Inserts a float value into the mapping of this Bundle, replacing any existing value for the given key.

@param key a String, or null @param value a float

Implementation

void putFloat(String key, double value) {
  // unparcel();
  _map[key] = value;
}