Description
Memory Leak 1
After a double rotation of the CityList Activity there is in heap memory 1 instances more of:
class org.ametro.ui.activities.CityList @ 0x12cb0000
class org.ametro.ui.fragments.CityListFragment @ 0x12cb9c00
It should not be like this because the rotations return to the same GUI state and the memory should stay in the same state as well. It could be a symptom of a bad management of the onCreate-onDestroy lifecycle.
Memory Leak 2
After a double rotation of the MapList Activity there is in heap memory 1 instances more of:
class org.ametro.ui.activities.MapList @ 0x12ca9000
class org.ametro.ui.fragments.MapListFragment @ 0x12cb2c00
It should not be like this because the rotations return to the same GUI state and the memory should stay in the same state as well. It could be a symptom of a bad management of the onCreate-onDestroy lifecycle.