Clones the current Bundle. The internal map is cloned, but the keys and values to which it refers are copied by reference.
()
| 207 | * values to which it refers are copied by reference. |
| 208 | */ |
| 209 | @Override |
| 210 | public Object clone() { |
| 211 | return new Bundle(this); |
| 212 | } |
| 213 | |
| 214 | /** |
| 215 | * If the underlying data are stored as a Parcel, unparcel them |
no outgoing calls