Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you add an Enum object to an Android Bundle?

share|improve this question
   
Just a note; using Enums in android is not very good for performance: developer.android.com/guide/practices/design/… – jaxvy Jul 20 '10 at 18:21
2  
In my opinion that advice from Google staff is bad. Enums are very convenient and suffering the described overhead is worthed. – ognian Jul 20 '10 at 18:24
can you revisit the answers and accept the 2nd one if you think it might be a better choice. – philipp Sep 6 '12 at 19:43
1  
Under the heading "Avoiding Enums" in the above link it now says this: Performance Myths Previous versions of this document made various misleading claims. We address some of them here. – StackOverflowed Oct 2 '12 at 11:00

4 Answers

up vote 9 down vote accepted

Just pass it as int from ordinal(). Restore it from values[].

share|improve this answer
4  
This is NOT recommended at all. The problem is one of maintainability. An Intent has the potential to come from other sources or to originate in code that reads data that's older than the version of the code restoring the enum from the Bundle. Therefore, the saved ordinal may not correspond to the index of the correct enum value. The recommended solution is the one by @miguel: to just store the enum directly and restore it by calling Intent#getSerializableExtra(String) and cast back to the enum type. – Warlax Jul 14 '12 at 18:48

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 enum:

enum YourEnumType {
  .
  .
  .
}

Put:

intent.putExtra(EXTRA_KEY, yourEnum);

Restore:

yourEnum = (YourEnumType) intent.getSerializableExtra(EXTRA_KEY);
share|improve this answer

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:

enum YourEnumType {
    ENUM_KEY_1, 
    ENUM_KEY_2
}

Put:

Bundle args = new Bundle();
args.putSerializable("arg", YourEnumType.ENUM_KEY_1);
share|improve this answer

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

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.