示例#1
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            SetContentView(Resource.Layout.Main);
            ListAdapter = new WifiLocationAdapter(this, _locations);

            _permissionsService.CheckAndAskForPermission(this);

            _addLocationButton        = FindViewById <Button>(Resource.Id.MyButton);
            _addLocationButton.Click += SaveWifiLocation;
        }