On Nov 28, 2011, at 11:05 AM, nodoid wrote: > Is there an example anywhere on how to create a menu for an application from the menu button? I can't seem to find one. You override Activity.OnCreateOptionsMenu(). The SkeletonApp sample does this: https://github.com/xamarin/monodroid-samples/blob/master/SkeletonApp/SkeletonApp.cs#L34 - Jon