Wow! I ran into this myself not 20 minutes ago, to make it work, you have to do this, I had left off the SingleTop and the OnActivityResult was being called immediately.
// I found this fix from: http://lblasa.wordpress.com/2011/06/16/android-onactivityresult-after-startactivityforresult-getting-called-immediately/ Intent i = new Intent(); i.SetClass(this, typeof(Activity2)); i.AddFlags(ActivityFlags.SingleTop); // The SingleTop - makes it act Modal StartActivityForResult(i, 0); -- View this message in context: http://mono-for-android.1047100.n5.nabble.com/OnActivityResult-not-being-called-tp4802915p4803100.html Sent from the Mono for Android mailing list archive at Nabble.com. _______________________________________________ Monodroid mailing list [email protected] UNSUBSCRIBE INFORMATION: http://lists.ximian.com/mailman/listinfo/monodroid
