What I\'m doing is this
Button button1 = FindViewById(Resource.Id.button1); button1.SetOnClickListener(new View.OnClickListener() {
The Xamarin.Android way of doing a SetOnClickListener is via C# style events:
Xamarin.Android
SetOnClickListener
Button button1 = FindViewById(Resource.Id.button1); button1.Click += (sender, e) => { // Perform action on click };
Required reading for Xamarin's Android Events and Listeners