Created
February 19, 2014 04:52
-
-
Save ymhuang0808/9086234 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private HashMap<String, Station> mStationMap; | |
... | |
@Override | |
public void onSaveInstanceState(Bundle outState) { | |
StationHashMap stationHashMap = new StationHashMap(); | |
stationHashMap.setStationMap(mStationMap); | |
outState.putParcelable(SAVE_INSTANCE_KEY_SATION_MAP, stationHashMap); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment