In my Android application, when I rotate the device (slide out the keyboard) then my Activity is restarted (onCreate is called). Now, this is proba
Activity
onCreate
Fix the screen orientation (landscape or portrait) in AndroidManifest.xml
AndroidManifest.xml
android:screenOrientation="portrait" or android:screenOrientation="landscape"
android:screenOrientation="portrait"
android:screenOrientation="landscape"
for this your onResume() method is not called.
onResume()