Exemplo n.º 1
0
 public void toggle() {
   if (isSurfaceCreated) {
     if (handler == null) start();
     else if (handler.isStop()) {
       resume();
     } else pause();
   }
 }
Exemplo n.º 2
0
 @Override
 public void start() {
   start(0);
 }
Exemplo n.º 3
0
 public void restart() {
   stop();
   start();
 }