I\'m developing on an android tablet application and I have to manage application orientation. I got a problem that every time when I rotate the device onCreate() will be ca
onCreate() will always be called because when orientation changes the Activity is always recreated. There is nothing wrong with that. You should implement proper behaviour for this or disable the possibility of changing the orientation by adding orientation=horizontal to manifest for instance