In the documentation for the Parcel it states a method exists

public final void writeBooleanArray (boolean[] val) 

But there is no method for writeBoolean(boolean val)

There also exists:

public final void writeLong (long val)

public final void writeLongArray (long[] val)

So a similar pattern is available for other primitive types.

Can some one explain why this is?

link|improve this question

Very good question. I am also very interested in this result. – prolink007 Nov 17 '11 at 17:41
feedback

2 Answers

up vote 2 down vote accepted

There is an open bug report on it:

http://code.google.com/p/android/issues/detail?id=5973

Evidently others agree with your assessment (and I do too).

link|improve this answer
You think the fact this has been an open issue for nearly 2 years is a reflection on a certain shortcoming google has in addressing android bugs as it seems so fundamental and simple, or do you think there may be some hidden architectural problem – whatsthebeef Nov 17 '11 at 17:49
2  
At the very least they could add a facade that implements the writeInt(myBool ? 1 : 0) and back workaround... That alone tells me there is no architectural obstacle. – jkschneider Nov 17 '11 at 17:51
In the spirit of open source, I strongly suggest you submit a patch :) source.android.com/source/index.html – jkschneider Nov 17 '11 at 17:53
feedback

No reason at all, seems just a miss to me. :-) Write a boolean[1] if you need.

See bug 5973.

link|improve this answer
oops, I'm slow! :-) – David Nov 17 '11 at 17:44
feedback

Your Answer

 
or
required, but never shown

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