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?
| |||
feedback
|
|
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 | |||
|
feedback
|
source:here | |||||
feedback
|