private void UpdateNotesList()
        {
            GeneralNotesController gc    = new GeneralNotesController();
            List <string>          notes = new List <string>(gc.GetNotes(campaignText));

            if (notes[0] == null)
            {
                return;
            }
            LinearLayout          linearLayout = FindViewById <LinearLayout>(Resource.Id.list_layout);
            ListView              listView     = (ListView)linearLayout.GetChildAt(0);
            ArrayAdapter <string> adapter      = new ArrayAdapter <string>(this, Android.Resource.Layout.SimpleListItem1, notes);

            if (listView != null)
            {
                listView.Adapter = adapter;
            }
            linearLayout.RefreshDrawableState();
        }