Automobile.Mobile.Android.Automation.AutomationActivity.OnResume C# (CSharp) Method

OnResume() protected method

Executed when activity is on the screen and active
protected OnResume ( ) : void
return void
        protected override void OnResume()
        {
            base.OnResume();
            // Start automation
            if(_autoThread.ThreadState != ThreadState.Running)
            {
                _autoThread.Start();
            }
        }