activity A start activity B,
in activity B,save some data like,
getPreferences(MODE_PRIVATE).edit().putInt(EASY_COUNT,
                            t).commit();
Then try get the data in activity A like,
getPreferences(MODE_PRIVATE).getInt(Game.EASY_COUNT, 9999);But A always get 9999, in fact B.xml the value already updated.How do fix it?