Ejemplo n.º 1
0
 /** Stops the playing media */
 public void stop() {
   Log.d(TAG, "stop");
   synchronized (this) {
     mPlayRequested = false;
     mPlaying = false;
     mAudioReset = true;
   }
   Log.d(TAG, "Begin to nativeStop ++");
   nativeStop();
   Log.d(TAG, "nativeStop done --");
 }