Skip to content

Instantly share code, notes, and snippets.

@TechIsFun
Last active August 29, 2015 14:08
Show Gist options
  • Select an option

  • Save TechIsFun/2990089405796fc32fc8 to your computer and use it in GitHub Desktop.

Select an option

Save TechIsFun/2990089405796fc32fc8 to your computer and use it in GitHub Desktop.
Write boolean to parcelable
public static void writeBoolean(Parcel destination, boolean value) {
if (destination != null) {
destination.writeInt(value ? 0 : 1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment