[mono-android] cannot override OnActivityResult

Jonathan Pryor jonp at xamarin.com
Tue Jun 26 16:07:11 UTC 2012


On Jun 21, 2012, at 8:13 AM, Nosh wrote:
> When i try and override  OnActivityResult(int requestCode, int resultCode, Intent data)
> 
> I get a message :no suitable method found to override

Your parameter types are wrong: http://androidapi.xamarin.com/?link=M:Android.App.Activity.OnActivityResult

Use:

	protected override void OnActivityResult (int requestCode, Result resultCode, Intent data)
	{
	}

 - Jon



More information about the Monodroid mailing list