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

LWUIT 1.5 for Mac OS Development

I want to make mobile application using Netbeans 7.0 on Mac OS, I'm using LWUIT 1.5 but the application is not working although it is working in another Windows computer but using Wireless Toolkit 2.5.2, but now when I used Wireless Toolkit 3.0 for…
Amira Elsayed Ismail
  • 9,216
  • 30
  • 92
  • 175
0
votes
2 answers

How to change programmatically the size of a Font defined in the Resource Editor?

In the Resource Editor I created a Font having a size of 9, and it is proportional, plain and small. Then I created also some UIID which are based on this Font. Now I want to change programmatically the size of this Font under certain circumstance ,…
pheromix
  • 18,213
  • 29
  • 88
  • 158
0
votes
1 answer

User editable sms sending number, in my j2me sms application

In my LWUIT j2me app, i have a user editable textfield where the user enters some values, and that is appended in my sms content. Later the user clicks "send" and the sms goes to number that i have written in the…
user1099129
0
votes
1 answer

Save a number using rms in j2me lwuit

What I have tried is to build a Form and inside that a TextField where the user can insert any number and click on "save" Command and the number should save in the rms, and now, even after the several times of opening the application and closing it,…
user1099129
0
votes
1 answer

LWUIT calendar: highlight days to have different styles. How to achieve it?

I want to use LWUIT 1.5 Calendar class to show different background color to certain days to show that those dates have some event scheduled. I tried overriding the createDay() method of the Calendar class but it does not work. What am I doing wrong…
Kiran Aghor
  • 457
  • 5
  • 8
0
votes
1 answer

How to add arguments without key, to add only value to the body of ConnectionRequest

I want to add a Json object to ConnectionRequest as value without key. I know that if use standard addArgument(key,value) - addArgument("json","{JsonObject}") in the body of request will be json={JsonObject} But I need to add only JsonObject…
AzizD
  • 103
  • 10
0
votes
1 answer

show application error when build application s40 5th edition using netbeans

I am trying to use LWUIT in my application, and I am using Eclipse IDE. I did one sample application. When I run the application I got the "Application error" (i.e) No class def found error java/lang/noclassdefFounerror…
APK
  • 1
  • 1
0
votes
2 answers

LWUIT J2ME Using VirtualKeyboard

Is it possible to use virtual keyboard without assign it to TextField/TextArea ? In doc is said the VK must be linked to some Component ( bindVirtualKeyboard() ). I have a Label and some Button. After clicking on Button I woud like to show virtual…
Bogus
  • 245
  • 2
  • 4
  • 10
0
votes
2 answers

How do I load a LWUIT theme file into my Java project?

I am relatively new to Java, so bear with me. I am completing a tutorial on LWUIT, and just want to load a simple theme, created using the editor. Here is the code in question: try { Container container = c.getContainer(); …
Thomas
  • 5,810
  • 7
  • 40
  • 48
0
votes
2 answers

inheriting a GUI class in LWUIT 1.5

I'm trying to inherit a class that I made in the GUI Resource Editor of Lwuit to extend some functionality. I want to do something like: public class MyCustomGUIForm extend CustomGUIForm{...} Where CustomGUIForm its a Form that I create in the…
Dondump
  • 39
  • 5
0
votes
1 answer

How do I implement Search in my List in LWUIT?

On Shai's blog entry about Searchable list, I noticed that he commented that since he optimized LWUIT some things are broken. I want to implement search on my list in LWUIT, please how do I implement? Some basic examples would also be very helpful,…
Daydah
  • 372
  • 7
  • 20
0
votes
3 answers

how to make textfield to accept only alphabets in LWUIT?

I have created some TextFields. Now I have to set constraint to that TextField only alphabets..I don't know how to do that in LWUIT
Juhi
  • 85
  • 7
0
votes
1 answer

Approach for implementing a timer in LWUIT APP

I am developing a quiz application using LWUIT where users can choose from different types of quizzes. The user has the choice of taking a timed quiz or an untimed quiz. In a timed quiz, a count down timer will be displayed on top of the screen and…
Nikhil
  • 1,279
  • 2
  • 23
  • 43
0
votes
1 answer

LWUIT ConnectionRequest: Bad Request on Blackberry

My lwuit application is working fine on Blackberry Simulator while on device the application installs successfully, starts normally, but where am having issues is on network connection. Trying to access network I get 400 Bad Request message. I don't…
Chibuike Mba
  • 327
  • 1
  • 10
0
votes
1 answer

number locales can't be identified in LWUIT components

Here is my label component: Label totalPrice = new Label(); totalPrice.setText(shoppingList.getTotal() + "00 " + "T"); There's a number part "getTotal()" which generates dynamically in run-time, and other constant strings "00 T". The question is…
Ali Ghanavatian
  • 506
  • 1
  • 6
  • 14