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
vote
2 answers

Add Java SE Classes to Java ME read PDF

I'm writing a Java ME application that uses iText to read PDF. When I write my code in standard Java including the iText libraries in the class-path, the application runs. However if I move the code into a java mobile application including the iText…
sammyukavi
  • 1,501
  • 2
  • 23
  • 51
1
vote
1 answer

LWUIT: Can not set Tabs icons

I'm using lwuit resource editor to design my app forms. I have a tab and i want to set icons but after i select them and press OK i got just null, nothing happened. What's wrong?
Ali
  • 1,451
  • 1
  • 15
  • 19
1
vote
2 answers

How do I change localization in my j2me program with LWUIT?

I've created a localization table in my project's res-file using LWUIT Resource editor. But it turns out, that I don't know how to switch through different localizations. How can I set up a global language for my program?
Angstrem
  • 346
  • 1
  • 4
  • 14
1
vote
3 answers

run codenameone j2me application on samsung devices

I create j2me application with codenameone and it works well in Nokia phones, however I wanna install or run it on Samsung devices (for instance S8300) I'll get error. How can I fix this error? I searched for this device's details and I found it…
Ahmad
  • 437
  • 5
  • 20
1
vote
1 answer

deploying j2me application on old handsets

I was to develop a simple j2me application for microworks. The application is to send sms. But I found that most of the mobile phone they carry are very simple and even some of them don't have Bluetooth, infrared, browser. How to make it work…
user98239820
  • 1,411
  • 2
  • 16
  • 30
1
vote
2 answers

How to Create Search TextField like Nokia?

In Nokia S40 the search field for the contacts is looked like this This TextField is really interactive, if I put some text the magnifier will change into x Button. I've tried to create the TextField in LWUIT and override the paint methods to put…
giripp
  • 285
  • 1
  • 4
  • 13
1
vote
1 answer

How can I get rid of the "back" button in my j2me programms while using LWUIT?

I'm writing a j2me application using LWUIT. I make a GUI in the LWUIT Resource Editor. But there's a little problem: when I switch through the Forms in my mobile application, the "back" soft button appears (it's task is to move user to the previous…
Angstrem
  • 346
  • 1
  • 4
  • 14
1
vote
1 answer

Customize title bar in Lwuit to look like J2ME default Status bar

I want to show the status bar in My J2ME application and I am using Lwuit too. I could not find a way to do that Especially that I m also having problems with the default menu in Lwuit. So I want to customize the title bar in Lwuit to look like the…
Reham
  • 1,916
  • 6
  • 21
  • 45
1
vote
1 answer

Lwuit VideoComponent goes to the background of the form when played on Samsung TouchScreen Mobiles

I am using Lwuit videocomponent to play some media as 3gp, mp4 etc. The problem occurs when the component is started, it plays but immediately goes to the background. This happens only on Samsung TouchScreen devices Such as Corby, GT S5620,…
shriniket
  • 55
  • 1
  • 7
1
vote
3 answers

LWUIT HtmlComponent

I've an Html String: String html="

\"Prithvi

String
  • 3,660
  • 10
  • 43
  • 66
1
vote
1 answer

LWUIT Uncaught exception: java.lang.OutOfMemoryError(stack trace incomplete)

I developed an Rss Application using LWUIT Tabs,i want to display Rss Feed Titles and images on my Lwuit Tab screen,but when i run my application i am able to display three List (title with image)items Sucessfully,after that i am facing…
String
  • 3,660
  • 10
  • 43
  • 66
1
vote
1 answer

How to check LWUITList Contains Values?

I have created LWUIT Tabs ,when the user clicks on any tab, I want to execute some logic,the logic output will be some list of items,but the problem is when the user clicks on the tab again. My tab related logic is executing continously. I want to…
String
  • 3,660
  • 10
  • 43
  • 66
1
vote
2 answers

Showing Time on LWUIT Soft Button bar

I'd like to show the time (HH:MM) in the middle of the soft button bar (eg like in Opera Mini or UC Browser 8.6) in LWUIT. I have used this code to get device time. String getDateString ( Date date ) { Calendar calendar = Calendar . getInstance…
Chris Mwai
  • 91
  • 1
  • 14
1
vote
1 answer

Form Glass Pane in LWUIT

I'm trying to make a waiting screen using Form Glass Pane in LWUIT, the following is the code that I'm using public class LoadingGlassPane implements Painter { public static boolean isShown = false; public static IForm form; public…
Amira Elsayed Ismail
  • 9,216
  • 30
  • 92
  • 175
1
vote
1 answer

Find elements defined in the LWUIT resource editor

I'm developing a LWUIT based application and I have separated my application into one form which has to access components such as the given example log-in dialog. Problem is I can't seem to find a way to access (or initialize) a container or dialog…
Prez
  • 13
  • 3