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
-1
votes
1 answer

I can't view the last message when the message's contents fill the screen, can someone help me out?

I am doing an IM application with the lwuit api, In my message form I have an issue, I can't view the last message when the message's contents fill the screen, I have to scroll manually and it is embarrassing. I have tried everything by my side but…
NaPsTeR
  • 31
  • 4
-1
votes
1 answer

How to display a Form Screen on LWUIT Tabs?

I have list items on form, I have to display that form on tabs, when the user clicked on a tab. How to add that form to tab, after form.show() or before? I need to display first tab as default with Form Screen?
String
  • 3,660
  • 10
  • 43
  • 66
-1
votes
1 answer

LWUIT - View not getting painted for BB, post closing the app

The view is not getting painted in BB device when the following steps are done: First time I run the app, it works fine. Close the application (System.exit(0)) Re-open the appllication, the device hangs. I use the following stuffs in my app: http…
Vijay Ravi
  • 19
  • 2
-1
votes
2 answers

How to use labels of new Renderer(createed with GUI) in code (LWUIT v1.5)

I've created a Renderer in Resource Editor with three labels(Icon,Destination,lblDate). And used it in the list with Listmodel event in StateMachine.java cmp.setModel(new DefaultListModel(payments)); cmp.setRenderer(new …
AzizD
  • 103
  • 10
-2
votes
1 answer

LCDUI to LWUIT conversion, Can anyone convert this code to LWUIT working format?

can this code in the following link http://j2mesamples.blogspot.in/2009/03/start-application-using-pushregistry.html be converted to LWUIT format? Because I created a sender application in LWUIT format, and now, I don't want the receiver to be in…
user1099129
-2
votes
1 answer

lwuit exception on blackberry

"uncaught exception thrown in midlet constructor: userclasses.MainMIDlet" while trying to run lwuit application on blackberry mobile device. I am developing with netbeans+lwuit+resource editor.
Chibuike Mba
  • 327
  • 1
  • 10
-2
votes
2 answers

How can I show dialog box on canvas in J2ME mobile application?

Possible Duplicate: Is this possible to use lwuit.Dialog with javax.microedition.lcdui.Canvas in wireless toolkit 2.5.2? I created a canvas to write contents when I press mobile keys(for Example if I press "A" it will be written on the screen…
Shankar
  • 13
  • 1
  • 6
-2
votes
3 answers

record store in j2me

I have 2 forms and the data should be stored in the record store only after filling all the fields in both the forms and if we switch from one form to another the fields in the form should contain whatever the user has entered. So how do I store…
-2
votes
1 answer

how to make a textfield numeric by default in lwuit?

i tried to make a application which takes the numeric value default. i have done coding like this public void startApp(){ Display.init(this); TextField amt=new TextField(); Form form=new…
Bikesh
  • 91
  • 4
  • 13
-2
votes
2 answers

demoProgram which can be of simple one

I am creating a program in which i want to display dialog box(which shows yes/no command) when button clicked, after dialog box has been shown, when clicking yes button it moves to another form, can you help me to achieve this task? please let me…
-2
votes
1 answer

call gui generated using lwuit gui builder from main class

hello i just create gui called for example LoginForm using lwuit resource editor gui builder (application>advance>generate ui state machine). how to call this LoginForm from my main class? thank you
Herahadi An
  • 198
  • 14
-2
votes
2 answers

How to develop Rss Reader App using LWUIT Component in j2me(java)

I am new to J2me I have a requirement to develop Rss Reading Application using LWUIT in j2me(java)for series 40 Device. 1)I need to read Rss File 2)i need to display Title and Image from Rss xml File on LWUIT List Screen 3)If i click on Title ,i…
String
  • 3,660
  • 10
  • 43
  • 66
-3
votes
1 answer

Mobile Number Validation In LWUIT

I want to check the 10 digit phone number whether all 10 digits are same or different. If same means Invalid mobile number alert will be displayed. I want a code in LWUIT.
Juhi
  • 85
  • 7
-3
votes
1 answer

can we auto swap the images in lwuit

I mean as a slider, like so: Image img[]=new Image{"a.png","b.png","c.png"}; for(int i=0;i
-3
votes
1 answer

why does this does throw a number format exception

its basically a button event that does multiplication mul.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent evt) { if(Sans == null){ temp = text; …
Ankur Teotia
  • 227
  • 1
  • 10
1 2 3
60
61