public void OnServiceBound(AudioRecorderBinder binder)
		{
			throw new NotImplementedException();
		}
		public void OnServiceBound(AudioRecorderBinder binder)
		{
			AudioRecorderService = binder.Service;

			if (AudioRecorderService == null)
			{
				Log.Error(Tag, "AudioRecorderService was null!");
				return;
			}

			if (!IsAudioRecorderCommHandlerConnected)
			{
				AudioRecorderService.Communication += OnAudioRecorderCommChanged;
				IsAudioRecorderCommHandlerConnected = true;
			}
			TryEnableStartButton();
		}