protected override void OnResume()
        {
            base.OnResume();

            try
            {
                if (_isInitialized)
                {
                    _scanView.Start();
                }
            }
            catch (Exception e)
            {
                Log.Debug(TAG, e.ToString());
            }
        }