Also, this helped me before:

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/Using-the-device-camera-and-getting-a-result-OnActivityResult-is-NEVER-called-tp4902905p4902965.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

Reply via email to