Memulai Pemrograman Mobile - PowerPoint PPT Presentation

1 / 18
About This Presentation
Title:

Memulai Pemrograman Mobile

Description:

Menjalankan MIDlet di Emulator. Memulai Pemrograman Mobile. Hello, World! MIDlet ... Menggunakan Netbeans dan Netbeans Mobility Pack. Menggunakan Netbeans ... – PowerPoint PPT presentation

Number of Views:90
Avg rating:3.0/5.0
Slides: 19
Provided by: CHay150
Category:

less

Transcript and Presenter's Notes

Title: Memulai Pemrograman Mobile


1
Memulai Pemrograman Mobile
Pembangunan Aplikasi Mobile
  • Versi 0.1

2
Tujuan
  • Menciptakan MIDlet sederhana
  • Menciptakan proyek di Netbeans
  • Menciptakan MIDlet di Netbeans
  • Menjalankan MIDlet di Emulator

3
Memulai Pemrograman Mobile
  • Hello, World! MIDlet
  • Menggunakan Netbeans dan Netbeans Mobility Pack

4
MIDlet Life Cycle
5
Hello, World! MIDlet
  • import javax.microedition.midlet.
  • import javax.microedition.lcdui.
  • public class HelloMidlet extends MIDlet
  • implements CommandListener
  • Display display
  • Command exitCommand
  • new Command("Exit", Command.EXIT, 1)
  • Alert helloAlert

6
Hello, World! MIDlet
  • public HelloMidlet()
  • helloAlert new Alert(
  • "Hello MIDlet", "Hello, world!",
  • null, AlertType.INFO
  • )
  • helloAlert.setTimeout(Alert.FOREVER)
  • helloAlert.addCommand(exitCommand)
  • helloAlert.setCommandListener(this)

7
Hello, World! MIDlet
  • public void startApp()
  • if (display null)
  • display Display.getDisplay(this)
  • display.setCurrent(helloAlert)

8
Hello, World! MIDlet
  • public void pauseApp()
  • public void destroyApp(boolean unconditional)

9
Memulai Pemrograman Mobile
  • Hello, World! MIDlet
  • Menggunakan Netbeans dan Netbeans Mobility Pack

10
Menggunakan Netbeans
  • Membuka Netbeans
  • Membuat project
  • Membuat sebuah MIDlet yang baru
  • Mengcompile dan menjalankan MIDlet

11
Membuat Project
  • File -gt New Project
  • Category Mobile
  • Project Mobile Application
  • Tentukan nama project
  • Pilih platform

12
Membuat Project
13
Membuat MIDlet
  • File -gt New File...
  • Category MIDP
  • File Type MIDlet
  • Tentukan nama MIDlet
  • Tuliskan kode untuk MIDlet

14
Membuat MIDlet
15
Membuat MIDlet
16
Menentukan nama MIDlet
17
Menuliskan kode MIDlet
18
  • Compile
  • Jalankan
  • MIDlet
Write a Comment
User Comments (0)
About PowerShow.com