Does anyone know where/when this method of a Parcelable is called?
@Override
public int describeContents() {
return 0;
}
It has to be overriden. But should I consider doing something useful with it?
|
Does anyone know where/when this method of a Parcelable is called?
It has to be overriden. But should I consider doing something useful with it? |
|||
|
|
There is a constant defined in Description for
Which really means: If you need to put This whole Parceable functionality looks unfinished (read: has bad design). There is one other strange thing in the docs:
Implementing multiple inheritance by rules defined in human readable form? :-) It seems like C++ programmer designed |
|||
|
|
source:here |
|||||
|
|
Describe the kinds of special objects contained in this Parcelable's marshalled representation. Returns a bitmask indicating the set of special object types marshalled by the Parcelable. it is override method |
|||
|
|