• 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:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How do I create a game made using Java playable on mobile phones?

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have co-created a game. The software programmer has used Java to create the game. How can we make the game playable on mobile phones?
Please reply here &/or to: jeff@jeffklamerdesign.com

Thank you,
Jeff
www.jeffklamerdesign.com
www.animatedjigsaws.com
 
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The Java that runs on mobile phones is usually Java ME (Micro Edition), so you'll have to make it work on Java ME. I don't know anything about Java ME, so I can't help you any further with it...
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You have to modify your game code and port it into Java ME. Because Java ME has less methods than Java SE, you must modify some (may be many) on your code.
for developing game you can use GameCanvas instead of Canvas, which supports more game functions (key control, sound, animation, etc). ngg... where should we start?
I think Jason Lam (http://www.jasonlam604.com/books.php) has made a clear explanation and tutorial on how to make a Java mobile game.
you can start from there.

have fun.
 
reply
    Bookmark Topic Watch Topic
  • New Topic