private void PostVibrateTask()
 {
     SystemSound.Vibrate.PlaySystemSound();
     if (isStarted)
     {
         ion.PostToMainDelayed(PostVibrateTask, TimeSpan.FromMilliseconds(500));
     }
 }
Example #2
0
 private void PostNotification()
 {
     if (isStarted && sound != null)
     {
         sound.PlaySystemSound();
         ion.PostToMainDelayed(PostNotification, TimeSpan.FromSeconds(3));
     }
 }