BugFix : Event in List is not bookmarked/unbookmarked #49
BugFix : Event in List is not bookmarked/unbookmarked #49anushreeag wants to merge 3 commits intomasterfrom
Conversation
…d/unbookmarked in detail Activity and we return to List of events
|
@jaysondc @ganeshskudva : Do we need intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); while starting DetailActivity ? |
|
I don't think it needs to be to be a NEW_TASK. That flag causes the system to launch the activity in a whole separate task stack, with a different animation than when you normally launch an activity. This would probably break our shared element transition as well. We should be able to keep the launch mode as NORMAL which is described as the following:
This is correct because even if an instance of DetailActivity exists somewhere in the background, we want to launch a separate instance so it loads via a new intent. |
when event is bookmarked/unbookmarked in detail Activity