Questions tagged [lwuit]

Lightweight User Interface Toolkit - widget-based UI library for J2ME enabled mobile devices

LWUIT is a framework for cross platform mobile development that was originally inspired by Swing but took a lot of inspiration from SwingX and went much further with themes & styles. LWUIT has a powerful GUI builder/theme creator and provides a porting layer to several platforms specifically J2ME/MIDP, Blackberry, TV, JavaSE (Applets and Applications), Android and others.

LWUIT allows a lot of power in configuring its theme and has 3rd party themes mimicking native Android/iPhone look and feels in the LWUIT incubator. LWUIT features elaborate special effects and transitions and is highly customizable, it supports all the common touch gestures as well as feature phone none-touch UI's seamlessly.

LWUIT is 100% open source and free under the GPL with classpath exception license which allows for both commercial and none commercial deployments.

LWUIT4IO is an additional library for LWUIT recently added to provide improved integration with filesystem, storage, serialization, Networking etc. To this date there is a large and thriving LWUIT community, there are many operator grade deployments of applications based on LWUIT within some of the biggest operators in the world.

Video of chat demo (shows off some animations and bubble chat): http://www.youtube.com/watch?v=LFClNS5vWQs

One of the many videos showing off the resource editor tool which includes a GUI builder, Theme editor, localization tool etc.: http://lwuit.blogspot.com/2011/04/generating-netbeans-project-from.html

Official Website

http://www.oracle.com/technetwork/java/javame/javamobile/download/lwuit/index.html

902 questions
0
votes
1 answer

LWUIT Tab navigation/list focus issue

I have embedded 3 'TABS' on top of a form. Each tab has a 'LIST'. Whenever I change focus from one tab to another, I want my lists to have focus. How do I ensure that my lists always have focus? I navigate using gameKeyEvents. I have added an…
Nikhil
  • 1,279
  • 2
  • 23
  • 43
0
votes
1 answer

How to make the Datatype indicator at the right of a TextField disappeared when clicking the left or right arrow keys?

There is a TextField populated by a value from a RecordStore , and the carret position is at 0 when navigating to the TextField. I need to go to a certain character position within the TextField's text. But when I click the right navigational button…
pheromix
  • 18,213
  • 29
  • 88
  • 158
0
votes
1 answer

how to move next tab menu using button in lwuit?

How to move one tab to another tab using button Click? When I click accept button, it moves to next tab menu. Can anyone tell me how to do this? frmSubscription = new Form(); String[] subscriptionList = {"15 Days - $12.5", "30 Days - $25",…
selladurai
  • 6,491
  • 14
  • 56
  • 88
0
votes
1 answer

how to disable combobox in LWUIT?

I have created ComboBox and CheckBox in a Form. Now what I want to do is, if I checked that CheckBox means the ComboBox will be disabled. How to do that?
Juhi
  • 85
  • 7
0
votes
1 answer

Using LWUIT in eclipse for j2me development

I am new to the LWUIT and I need to know what are the steps to install and use LWUIT in eclipse. Is there any specific eclipse version required or it can be run over any eclipse?
Yatin
  • 2,969
  • 9
  • 34
  • 68
0
votes
1 answer

SSL Error on attempting facebook authentication with LWUIT android port

I've been having some trouble with a LWUIT application that I am attempting to port to android. The application has some facebook integration features which requires authentication. The J2ME and Blackberry builds function correctly. However on…
bcombes
  • 31
  • 4
0
votes
2 answers

ActionListener receives no actionperformed event when I push the Select or arrow buttons

I can't figure out why it isn't receiving the action event. I push the arrows and select button and still nothing gets output to the console. import com.sun.lwuit.events.*; public class LWUITAPP extends javax.microedition.midlet.MIDlet implements…
Glenncito
  • 902
  • 1
  • 10
  • 23
0
votes
1 answer

How to Change the LCDUI form size in J2Me?

We are using LCDUI for our j2me application and I want to change my form size to minimize for looks like popup window. But I can't resize the form. But we have one method in form class setSize(Dimension d); But there is no use. I suspect there is no…
Saravanan
  • 11,372
  • 43
  • 143
  • 213
0
votes
0 answers

how to close a dialog box in lwuit?

Possible Duplicate: How can I Dispose Dialog box From LWUIT Component I am Using the Following Lwuit code to display a Dialogbox. when I press Key 0 a dialog should show as like in Switch case 48. When I press Key 4 that dialog should be closed…
Shankar
  • 11
  • 5
0
votes
1 answer

transfer netbeans made component to lwuit's "Resource Editor"

I tried to use "table" Component in a Form with "Resource Editor" in lwuit, but I could not add/edit the rows items. so I end up with this question: Is it possible to create/edit the table component in the generated "StateMachine" class in Netbeans…
Ali Ghanavatian
  • 506
  • 1
  • 6
  • 14
0
votes
1 answer

JavaME/LWUIT/Blackberry - how to get lcdui's Display in RIMlet?

I have a LWUIT-application which I also want to run on Blackberry phones. For this I use the approach from the LWUIT Demo App - common implementation is placed in a separate project (the base), there is 1 more separate project for MIDP which depends…
Zakhar
  • 2,143
  • 2
  • 15
  • 15
0
votes
1 answer

Designning for different screen resolutions

I'm working on a J2ME applicatoin using LWUIT and would like to support most of the major resolutions available on the market. Back in Android development, I had four sets of resolutions, Ldpi, Mdpi, Hdpi and XHigh, and behind the scenes Android…
Yehia A.Salam
  • 1,987
  • 7
  • 44
  • 93
0
votes
1 answer

Trouble posting comments with the LWUIT Facebook API

I'm working on a mobile project and decided to try out the LWUIT framework for development. So far it has been quite interesting although I wish the documentation was a bit better. I run into a problem trying to post content to facebook using the…
bcombes
  • 31
  • 4
0
votes
1 answer

How to call Exit Command when I press Key # in Lwuit Mobile Application?

Can I assign the Exit Command to the # key in an Lwuit Application? When I press the key #, the Exit command should be called automatically and exit the application.
Shankar
  • 31
  • 8
0
votes
1 answer

Can I Resize Form in LWUIT MIDLET?

Is it possible to set size for Form in Midelt program ? i want to show like a half size window in mobile screen.
Shankar
  • 31
  • 8