How do you add an Enum object to an Android Bundle?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Just pass it as |
|||||
|
|
Enums are Serializable so there is no issue. On the receiving side call getIntent().getSerializableExtra and cast it back to your enum. Given the following
Put:
Restore:
|
||||
|
|
|
I know this is an old question, but I came with the same problem and I would like to share how I solved it. The key is what Miguel said: Enums are Serializable. Given the following enum:
Put:
|
|||
|
|
|
It may be better to pass it as string from myEnumValue.name() and restore it from YourEnums.valueOf(s), as otherwise the enum's ordering must be preserved! Longer explanation: Convert from enum ordinal to enum type |
|||
|
|