2012-05-08 4 views

ответ

0
// Register ControllerListener : 

public class myPlayer implements ControllerListener { 
// .... 
    Player player = Manager.createRealizedPlayer(url); 
    player.addControllerListener(this); 
// .... 


// And check for EndOfMedia event in the controllerUpdate method: 

    public void controllerUpdate(ControllerEvent event) { 
    if (event instanceof EndOfMediaEvent) { 
     // Take appropriate action 
     } 
    } 
} // End of class 

Проверка состояния и прослушивания EndOfMedia события, можно обнаружить, если носитель воспроизводится или остановлен.

 Смежные вопросы

  • Нет связанных вопросов^_^