Estou tentando colocar um arquivo de vídeo para ser execcutado em uma aplicação, o problema é que o eclipse acusa um erro na linha onde eu coloquei: Manager.setHint(Manager.LIGHTWEIGHT_RENDERER, new Boolean(true));
dizendo: Manager.LIGHTWEIGHT_RENDERER cannot be resolved
Aquele seu: new Boolean(true) acho que é desnecessário, pois acredito que usando apenas o true o autoboxing já se encarrega de converter em um Boolean.
[i]
Manager Hints
Using the setHint method, the preference for how the Manager creates the objects can be specified. However, a particular implementation of the Manager can choose to ignore the requested hints.
Since:
1.0 , new methods added in 2.0
[/i]
Ou seja, talvez o setHint tenha sido implementado apenas na versão 2.0 e você esteja usando a versão 1.0.