Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Whats the best way to start programming for my non-smartphone?

I have a general old-fashioned phone that has no special app system and uses Java (I assume ME) for the few applications you can use on it.

This is still a decent userbase and I'd like to start programming for this type of phone. I already know basic Java theory and syntax, so.. where do I get started for programming for non-smartphones?

like image 207
Navarr Avatar asked Aug 12 '10 14:08

Navarr


People also ask

Do I need a laptop to learn coding?

While you don't necessarily need a powerhouse of a laptop to code on, if you need to compile your code, and test out the games you're working on, for example, then you'll want a laptop with plenty of RAM and a modern multi-core processor. They are able to compile code much more quickly.

Which coding language should I learn first?

C# is often regarded as one of the most versatile programming languages ideal to build robust applications across the ecosystem. It is object-oriented and the learning curve is not steep, making it perfect for beginners.


1 Answers

Best programming environment for Java ME IMO is Eclipse with EclipseME. Includes lots of built-in stuff about packaging your midlets etc. The SonyEricsson wireless toolkit is great for PC-based testing and debugging, but don't forget on-device testing!

If you don't know much about Java ME's lifecycle, then get reading as widely as you can, and try lots and lots of examples. Start with the JSR-118 (MIDP2) javadocs; you'll want these open on your desktop at all times while coding.

Don't waste too much time with the form-based user-interface; I recommend either rolling your own using Canvas, or read about LWUIT.

You can do all sorts in Java ME and target a very broad range of handsets. HTTP capability is guaranteed, so you can hook up to a public web service, or create your own using something like Google Appengine.

Finally, you can release your app very easily on somewhere like Get Jar. Don't be put off by those who say "no owners of Java ME handsets want apps", you'll find the most popular user bases on this site will be users in countries such as India and Indonesia.

Good luck!

like image 192
funkybro Avatar answered Sep 22 '22 16:09

funkybro