Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. Java
  4. Mobile Programming

Mobile Programming

Scheduled Pinned Locked Moved Java
javahelpquestion
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    Sourie
    wrote on last edited by
    #1

    I want to try a simple program with java for my Nokia cell phone. Is there anybody to help me?

    Sourie

    R 1 Reply Last reply
    0
    • S Sourie

      I want to try a simple program with java for my Nokia cell phone. Is there anybody to help me?

      Sourie

      R Offline
      R Offline
      raheela123
      wrote on last edited by
      #2

      import javax.microedition.midlet.*; import javax.microedition.lcdui.*; /** * @author Internet */ public class Midlet123 extends MIDlet implements CommandListener{ private Command Ok; private Display dis; private Form form; public Midlet123() { dis=Display.getDisplay(this); form=new Form("My First Middlet"); Ok=new Command("Exit",Command.OK, 1); form.setCommandListener(this); } public void startApp() { dis.setCurrent(form); } public void pauseApp() { } public void destroyApp(boolean unconditional) { } public void commandAction(Command arg0, Displayable arg1) { if(arg0==Ok) { destroyApp(true); notifyDestroyed(); } } } :laugh: :laugh: ;P :laugh: ;P :laugh:

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups