On Mar 22, 2012, at 7:01 AM, Andrew Johnson wrote:
> I'm having a problem with subclassing AsyncTask<>. I think this may be 
> related to a known Mono for Android bug.

It's a bug in the linker/class library:

        https://bugzilla.xamarin.com/show_bug.cgi?id=4040

The workaround is to also override DoInBackground():

        protected override Java.Lang.Object DoInBackground (params 
Java.Lang.Object[] native_parms)
        {
                return base.DoInBackground (native_parms);
        }

 - Jon

_______________________________________________
Monodroid mailing list
Monodroid@lists.ximian.com

UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid

Reply via email to