The issue is this:
1.) Main Activity opens 2.) user selects item from listview 3.) detail activity opens 4.) user clicks submit, or cancel, and Finish fires for detail activity 5.) screen flickers and activity does not close.
on main activty I have this code:
protected override void OnResume() { base.OnResume(); Populate(); /// populates the main listview }
If I comment out the OnResume method everything works as expected. If I leave it in there the screen flicker happens and the detail activity does not close on finish as expected. Sometimes it takes 2 or 3 clicks of either cancel or submit for it to work. Somehow my OnResume is causing this behavior. Any ideas?