writeToParcel:
dest.writeByte((byte)(myBoolean ?1:0));//if myBoolean == true, byte == 1
readFromParcel:
myBoolean =in.readByte()!=0;//myBoolean == true if byte != 0
|
writeToParcel:
readFromParcel:
|
|
I think
|
5459

被折叠的 条评论
为什么被折叠?