Lista de filmes java micro edition

260 palavras 2 páginas
import javax.microedition.lcdui.*; import javax.microedition.midlet.*;

public class Filmes extends MIDlet {

private Display display; private int mode = List.IMPLICIT; private Command exitCommand = new Command( "Sair",Command.SCREEN, 2 ); private Command selectCommand = new Command( "Selecionar",Command.OK, 1 ); /** * */

public Filmes(){ }

protected void destroyApp( boolean unconditional ) throws MIDletStateChangeException { exitMIDlet(); }

protected void pauseApp(){ }

protected void startApp() throws MIDletStateChangeException { if( display == null ){ initMIDlet(); } }

private void initMIDlet(){ display = Display.getDisplay( this ); display.setCurrent( new SampleList( mode ) ); }

public void exitMIDlet(){ notifyDestroyed(); }

public static String[] items = { "AI: inteligência Artificial", "Matrix", "Eu,robô", "Blade Runner", "A senha:Swordfish", };

class SampleList extends List implements CommandListener {

private int mode; private Command nextCommand;

SampleList( int mode ){ super( "", mode, items, null ); addCommand( exitCommand ); addCommand( selectCommand ); setCommandListener( this );

switch( mode ){ case IMPLICIT: setTitle( "Filmes" ); break; }

this.mode = mode; }

public void commandAction( Command c, Displayable d ){ if( c == exitCommand ){ exitMIDlet(); } else if( c == selectCommand ){ showSelection( true ); } else if( c == SELECT_COMMAND ){ showSelection( true );

Relacionados

  • persistencia em dispositivos moveis
    8894 palavras | 36 páginas
  • Programação para dispositivos moveis javame
    26160 palavras | 105 páginas
  • TCC
    19174 palavras | 77 páginas
  • java em embarcados
    20539 palavras | 83 páginas
  • Informatica de placas
    8570 palavras | 35 páginas
  • Informatica
    8570 palavras | 35 páginas
  • Eddy
    10028 palavras | 41 páginas
  • Ambiente de aprendizagem baseado na web 3.0
    4043 palavras | 17 páginas
  • Sistemas operacionais
    6232 palavras | 25 páginas
  • BDR1_alessandra_douglas2009
    20214 palavras | 81 páginas