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/ec4571d44c25b86443af to your computer and use it in GitHub Desktop.

Select an option

Save TechIsFun/ec4571d44c25b86443af to your computer and use it in GitHub Desktop.
Read boolean from Parcelable
public static boolean readBoolean(Parcel in) {
if (in != null) {
return in.readInt() == 1 ? true : false;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment