Automobile.Mobile.Android.Automation.AutomationActivity.OnResume C# (CSharp) 메소드

OnResume() 보호된 메소드

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