protected override async void OnCreate(Bundle bundle) { base.OnCreate(bundle); // Set our view from the "main" layout resource SetContentView(Resource.Layout.Activity_To_Do); CurrentPlatform.Init(); // await InitLocalStoreAsync(); // Get the Mobile Service sync table instance to use var usermapsTable = client.GetSyncTable <UserMaps> (); //textNewToDo = FindViewById<EditText> (Resource.Id.textNewToDo); //change to fit // Create an adapter to bind the items with the view adapter = new Adapters.UserMapsAdapter(this, Resource.Layout.Row_List_To_Do); var listViewUserMaps = FindViewById <ListView> (Resource.Id.listViewToDo); listViewUserMaps.Adapter = adapter; // Load the items from the Mobile Service OnRefreshItemsSelected(); }
protected override async void OnCreate (Bundle bundle) { base.OnCreate (bundle); // Set our view from the "main" layout resource SetContentView (Resource.Layout.Activity_To_Do); CurrentPlatform.Init (); // await InitLocalStoreAsync(); // Get the Mobile Service sync table instance to use var usermapsTable = client.GetSyncTable <UserMaps> (); //textNewToDo = FindViewById<EditText> (Resource.Id.textNewToDo); //change to fit // Create an adapter to bind the items with the view adapter = new Adapters.UserMapsAdapter(this, Resource.Layout.Row_List_To_Do); var listViewUserMaps = FindViewById<ListView> (Resource.Id.listViewToDo); listViewUserMaps.Adapter = adapter; // Load the items from the Mobile Service OnRefreshItemsSelected (); }