protected override void OnCreate(Bundle savedInstanceState)
        {
            base.OnCreate(savedInstanceState);
            SetContentView(Resource.Layout.Main);

            LinearLayout circleMenu = FindViewById <LinearLayout>(Resource.Id.radialMenu);

            wheelMenu = (WheelMenu)FindViewById(Resource.Id.radialMenu);

            //set the no of divisions in the wheel, default is 1
            wheelMenu.SetDivCount(12);

            //set the drawable to be used as the wheel image. If you
            //don't set this, you'll get a  NullPointerException.
            wheelMenu.SetWheelImage(Resource.Drawable.wheel);

            wheelMenu.Click += WheelMenu_Click;



            //shopMyCo.SetOnRadialMenuClickListener(new RadialMenuRenderer.IOnRadailMenuClick()
            //{

            //});

            //  shopMyCo.SetOnRadialMenuClickListener(new RadialMenuItem.OnRadailMenuClick { });
            //btnShopMyco = FindViewById<Button>(Resource.Id.btnShopMyco);
            //btnShopMyco.Click += BtnShopMyco_Click;

            //btnShopHerbs = FindViewById<Button>(Resource.Id.btnShopHerbs);
            //btnShopHerbs.Click += BtnShopHerbs_Click;

            //btnShopBoutique = FindViewById<Button>(Resource.Id.btnBoutique);
            //btnShopBoutique.Click += BtnBoutique_Click;
        }