Пример #1
0
 /// <summary>
 /// Listener that is invoked where a suitable subtitle should be loaded.
 /// When there no text should be displayed - then TimedText is a null.
 /// </summary>
 public override void onTimedText(MediaPlayer mediaPlayer, TimedText text)
 {
     if (text != null)
     {
         mController.notifySubtitles(text.Text);
     }
 }
Пример #2
0
		/// <summary>
		/// Listener that is invoked where a suitable subtitle should be loaded.
		/// When there no text should be displayed - then TimedText is a null.
		/// </summary>
		public override void onTimedText(MediaPlayer mediaPlayer, TimedText text)
		{
			if (text != null)
			{
				mController.notifySubtitles(text.Text);
			}
		}