Skip to content

Instantly share code, notes, and snippets.

@wada811
Created September 1, 2014 03:42
Show Gist options
  • Save wada811/06e5fb86cbfdec78b690 to your computer and use it in GitHub Desktop.
Save wada811/06e5fb86cbfdec78b690 to your computer and use it in GitHub Desktop.
How to pass Enum by Intent
# Difinition
enum YourEnumType {
yourEnum
}
# Pass
intent.putExtra(EXTRA_KEY, yourEnum);
# Receive
YourEnumType yourEnum = (YourEnumType) intent.getSerializableExtra(EXTRA_KEY);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment