/** Requests stoppage if a movie is currently playing. */
 private void stopPlayback() {
   if (mPlayTask != null) {
     mPlayTask.requestStop();
     mPlayTask = null;
   }
 }