views:

168

answers:

2

Hi all, I m doing a commercial j2me project in which I need some good Gui like tabbed pane and auto complete text boxes and I need a constant look and feel across all handsets so anyone having idea what gui tool used for commercial apps. I found j2me polish and LWUIT but I m confused which is preferred in j2me commercial apps.

Regards Rishabh

+1  A: 

There is no stand out choice when it comes to J2ME GUI frameworks. It really depends on the requirements of your project and what fits best.

I have used a commercial framework from Paxmodept, which worked well and included the source code. In addition to J2ME Polish and LWUIT there are a couple notable open source alternatives:

  • J4ME looks decent and importantly has active development.
  • Fire allows you to specify the look and feel using xHTML & CSS and also has active development.

For the open source frameworks, download the source code and create simple hello world apps. It shouldn't take long and will give you some insight into the pros and cons of each framework.

If you do use a commercial framework it is important that you have access to the source code as you'll most likely need to make small changes to fit the exact needs of your project.

Chuck