Example #1
0
        // ######## - Metodos do iLocationListner Fim
        //------------------------------------------------------------------------------------
        // ######## - Status do APP
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            SetContentView(Resource.Layout.Main);
            ListParam   = Intent.GetStringArrayListExtra("Array");
            _ScreenCall = Intent.GetStringExtra("CallScreen") ?? "";
            if (ListParam != null)
            {
                _ContinueTread = true;
                UpdateStatus   = new Thread(UpdatePositionFunc);
                UpdateStatus.Start();
                ObjRota.UpdateRota(ListParam[2].ToString(), "", ListParam[0]);
            }

            else if (_ScreenCall != "")
            {
            }
            Gps();
            MapFragment mapFragment = (MapFragment)FragmentManager.FindFragmentById(Resource.Id.mapFrag);

            mapFragment.GetMapAsync(this);
        }