• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

create slide show in MIDlet

 
Ranch Hand
Posts: 117
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi everyone , i'm planning to create a slide show application which display pictures when a button is clicked. Do I have to use thread for this ? Anyone has experienced this can give me example how to create slide show in java? :roll:

cordially,
Paula
 
Ranch Hand
Posts: 102
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No you don't need threads.

You need to look into using a "canvas" in MIDP. You can detect button presses and display PNG files packaged as resources in your JAR.

What you are describing should be a very simple application to write. Create a canvas, load a PNG, display it, wait for a keypress, repeat.

William Frantz
http://sprintdevelopers.com
 
reply
    Bookmark Topic Watch Topic
  • New Topic