I built my first Mono project for Android (oriented to API level 8, minimum Android 2.2) and deployed it to HTC Incredible [1], which runs on 2.3.4. Everything worked well and stayed in my main activities OnCreate, OnStart, OnResume, OnPauseand OnStopeverything worked well, as described in Xamarin Tutorial lifecycle .
Without changing any project parameters, I changed to Samsung Galaxy Nexus running 4.0.2 and deployed the same application. It was called OnCreatejust fine, but it never triggered any of the other events when I switched from the application.
How do I get these activity events to run in Ice Cream Sandwich (ICS) on the Galaxy Nexus?
source
share