protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate (bundle);

            // Set our view from the "main" layout resource
            SetContentView (Resource.Layout.List);

            ListAdapter lstAdpt = new ListAdapter (this);
            var lst = FindViewById<ListView> (Resource.Id.lstTeste);

            lst.Adapter = lstAdpt;
        }