public override void OnActivityCreated(Bundle savedInstanceState)
        {
            base.OnActivityCreated(savedInstanceState);

            // We want to allow modifications to the list so copy the dummy data array into an ArrayList
            List <string> items = new List <String> (Cheeses.CHEESES);

            // Set the ListAdapter
            ListAdapter = new PopupAdapter(items, this);
        }
 public MyOnMenuItemClickListener(PopupAdapter adapter, string itemTag)
 {
     myAdapter = adapter;
     myItemTag = itemTag;
 }