public override void onReceive(Context context, Intent intent)
 {
     base.onReceive(context, intent);
     if (intent.Action == Constants.COCKTAIL_LIST_ADAPTER_CLICK_ACTION)
     {
         PendingIntent p = intent.getParcelableExtra(Constants.EXTRA_CONTENT_INTENT);
         if (p != null)
         {
             try
             {
                 p.send();
             }
             catch (PendingIntent.CanceledException e)
             {
                 Console.WriteLine(e.ToString());
                 Console.Write(e.StackTrace);
             }
         }
     }
 }
		public override void onReceive(Context context, Intent intent)
		{
			base.onReceive(context, intent);
			if (intent.Action == Constants.COCKTAIL_LIST_ADAPTER_CLICK_ACTION)
			{
				PendingIntent p = intent.getParcelableExtra(Constants.EXTRA_CONTENT_INTENT);
				if (p != null)
				{
					try
					{
						p.send();
					}
					catch (PendingIntent.CanceledException e)
					{
						Console.WriteLine(e.ToString());
						Console.Write(e.StackTrace);
					}
				}
			}

		}