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

How to change color of title in header bar using lwuit?

I am using following code to set title : super.setTitle("abc"); I just want to set color
0
votes
1 answer

How to change hint text font size and color in j2me using LWUIT?

I am using the following code in java file and not using resource file. m_txtSearch = new TextField(); m_txtSearch.setHint("Search"); Then how can i change the font size and color of hint text ? Can u please help me ?
user821127
0
votes
1 answer

Displaying recordstore records in a lwuit list

I have a LWUIT application that Contains recordStore and recordStore2 RecordStores getRecordData() Method for retrieve all recordStore elements getRecordData2() Method for retrieve all recordStore2 elements Three forms as the application …
PHPFan
  • 756
  • 3
  • 12
  • 46
0
votes
1 answer

NoClassDefFoundError: com/sun/lwuit/layouts/Layout error?

i am developing an java application using eclipse pulser ide, in that i have got `NoClassDefFoundError: com/sun/lwuit/layouts/Layout. i have tried many solution's and tried to import LWUIT.jar and cleaned project's but even its not working can…
Gopi.cs
  • 985
  • 1
  • 16
  • 41
0
votes
2 answers

Fit table to screen - codenameone

I use table In one of my codenameone application forms. I've a problem on column width. In some devices the table shows with horizontal scroll but in some devices not. I wanna fit the table to device screen width or change some columns width. I was…
Ahmad
  • 437
  • 5
  • 20
0
votes
2 answers

LWUIT Container capture event

I have a Containerwith so many Labels added inside it. When I try to capture the pointerReleased event in this Container, I have found some problems. The event only is captured when I released in the free area of the Container, no when I made the…
Mun0n
  • 4,438
  • 4
  • 28
  • 46
0
votes
1 answer

LWUIT 1.5 VKB issue

The native keyboard for BB, opened via LWUIT 1.5 has the following issues, The EditField of BB, if it is added to the bottom of the form, doesn't scroll up. I am getting a rectangular box (like a selector or a magnifier) when I type something, then…
0
votes
2 answers

how to update a list content in lwuit at runtime

I have designed a lwuit form with a textfield and a list bottom of it. Now, I want following functionality: every time user changes a textfield content, list should be refreshed (like autocomlplete feature) but I don't know how to refresh a…
Navid
  • 901
  • 9
  • 20
0
votes
2 answers

LWUIT Button pressed and released

How to detect in LWUIT that button on form is pressed and hold, and how to detect that button is released.
0
votes
1 answer

Calendar component customized in LWUIT Resource Editor not displaying Properly

I have created a theme in LWUIT Resource editor for an app using calendar component. But while testing the app in device the dates are not fully displayed. For 21 it is displaying 2 fully and half of 1. Part of 1 is not being displayed! Which…
0
votes
1 answer

Refresh Theme() gives Array index out of bounds exception in lwuit

I am using lwuit for making the j2me mobiles app . And in one form i need to remove a component from a container and then have to add another component , And after doing this i am calling the refreshTheme() and revalidate() function, so that the…
0
votes
1 answer

custome tab header in lwuit resource editor

I am trying to make a codename one application in which i have to use tabbed form. I made a form having tab container which has three container to show three tabs. But these three tab header looks bulky, there heights is very big for my UI. How can…
vikrant kumar
  • 208
  • 2
  • 14
0
votes
2 answers

lcdui v/s lwuit

I want to create j2me screens for an application. I am new to j2me and wnat to know if i should opt for lcdui or lwuit. I read that lwuit will be supported only in CLDC 1.1 mobiles. I would like to know the list of CLDC 1.0 mobiles. From what I have…
0
votes
2 answers

Run particular command on particular button's action listener

I have a form which has 4 commands says Action1, Action2, Action3, Action4. Theses commands runs fine. Now i have a button says runCommand which have to call Action1 command. how can we do it. that run a command on action of particular button's…
vikrant kumar
  • 208
  • 2
  • 14
0
votes
1 answer

Gap in UI of Border layout in codenameone

I try to make a frame having border layout. In it i have 3 container- top, center and bottom . all three container has 3 different type of background. but when i see them there is little gap between these layouts which makes UI little separated and…
vikrant kumar
  • 208
  • 2
  • 14