Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
It seems no one has an idea ..? :-/ – cody Nov 4 '10 at 17:59

3 Answers

up vote 31 down vote accepted

There is a constant defined in Parceable called CONTENTS_FILE_DESCRIPTOR which is ment to be used in describeContents() to create bitmask return value.

Description for CONTENTS_FILE_DESCRIPTOR in the API ref is:

Bit masks for use with describeContents(): each bit represents a kind of object considered to have potential special significance when marshalled.

Which really means: If you need to put FileDescriptor object into Parceable you should/must specify CONTENTS_FILE_DESCRIPTOR as return value of describeContents(), i.e. by "special object" (in describeContents()'s description) they really mean: FileDescriptor.

This whole Parceable functionality looks unfinished (read: has bad design). There is one other strange thing in the docs:

Classes implementing the Parcelable interface must also have a static field called CREATOR, which is an object implementing the Parcelable.Creator interface

Implementing multiple inheritance by rules defined in human readable form? :-)

It seems like C++ programmer designed Parceable and at some point he realized: Oh, damn, there is no multiple inheritance in Java... :-)

share|improve this answer
  • Describes 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.

source:here

share|improve this answer
11  
thanks... I alreay read the documentation, but that doesn't answer my question :-/ – cody Dec 4 '10 at 16:49

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.