using System; using Android.App; using Android.Content; using Android.Runtime; using Android.Views; using Android.Widget; using Android.OS; namespace AutoComplete { [Activity(Label = "AutoComplete", MainLauncher = true, Icon = "@drawable/icon")] public class MainActivity : Activity { AutoCompleteTextView autocomplete1; Button btn_Submit; protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); // Set our view from the "main" layout resource SetContentView(Resource.Layout.Main); autocomplete1 = FindViewById(Resource.Id.autoComplete1); btn_Submit = FindViewById