示例#1
0
 /**
  * Seek the currently playing media to a specific position and start playback.
  *
  * @param position The position to seek to in milliseconds from the start.
  * @return Whether the operation was successful.
  */
 public boolean seek(int position) {
   return mController.seek(position);
 }