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

Vserv LWUIT banner

i am getting a ClassCastException when i try to cast to cast into com.sun.lwuit.Image .Please help on how i can change the code below to use in LWUIT public void vservAdReceived(Object obj) { if(obj==vservAd) { …
0
votes
1 answer

LWUIT Table's cells formatting

I have a LWUIT Table that contains a DefaultTableModel which itself contains some values written on it cells. I just want to change my table's cells formatting. In other words I want to set the direction of values in cells from Right to Left …
PHPFan
  • 756
  • 3
  • 12
  • 46
0
votes
1 answer

java me lwuit : string does not fit on screen

i am using sun's lwuit library for making my user interface in java me. i have a string containing newline characters. this is what i do: String str = "lfjsdfsdfdkf\nsfljl\nsdfj"; TextArea box = new…
Rohit Banga
  • 18,458
  • 31
  • 113
  • 191
0
votes
1 answer

Stop ticker in LWUIT radio button

I am new to Java-me and I am using LWUIT to display radio buttons. When I select a radio button its text starts moving or it start ticker. I would like to stop that.Does some one know how to do that?
Joker
  • 81
  • 12
0
votes
1 answer

LWUIT Custom expandable component in list item

In my project I use lwuit List(main), with a custom renderer. I`m following the purpose of implementing the expandable list item, that expands/collapses another List (wrapped). Initially, I'd created Container with Button and List (without…
ADK
  • 513
  • 3
  • 8
  • 22
0
votes
1 answer

lwuit video component floats over commands

My LWUIT video component floats over my commands. Any idea how I can fix this? My code is below. public void showQuickProfileForm() { Form f = new Form(); VideoComponent videoComponent = null; try { videoComponent =…
sammyukavi
  • 1,501
  • 2
  • 23
  • 51
0
votes
2 answers

how to set hint text size and font in j2me using lwuit

i am applying bitmap font to textfield and its working fine but textfield hint text size is not set as per i have applied font created using resource editor.please help me here how to set text filed hint text size? i am using this…
0
votes
1 answer

Catch events from a TextField

I'm building my app using the Nokia SDK 1.0 for the Asha 501 What I want to know, is how to capture events by pressing a TextArea. I'm porting an app from the S40 and using the code below, the TextArea doesn't capture the events TextArea itemText =…
Mun0n
  • 4,438
  • 4
  • 28
  • 46
0
votes
1 answer

Blackberry[CodeNameone]- Drawing on screen

I am beginner in codenameone. I have task assigned that draws anything[not rectangles or any shapes] on screen. Anything means It could be anything with fingers. Like android has gesturelayout where you can draw anything on surface. I have seen some…
Tony Chhabada
  • 412
  • 1
  • 7
  • 18
0
votes
2 answers

Creation of jar via ANT vs Eclipse

I was wondering if I could get any input on this: I am trying to create a jar that needs to be deployed on to radio head unit, I tried creating it by exporting it through Eclipse. But I was told the right way to do it was through Apache Ant. Why is…
0
votes
1 answer

How to wrap the row text in table?

i have created the table by using TableModel and Table API in LWUIT. I did successfully , but While adding big text ( sentence like 'this is a sample program'), it won't wrap the text instead of displayed as text with dots ( Ex: this...). How to…
vani
  • 5
  • 2
  • 3
0
votes
1 answer

ActionEvent of a component on a table cell doesn't take place

My code belongs to LWUIT apps but problem about something common between LWUIT and java swing. I have a table there is a Button set on the last cell of it as a component My question simply why is there no action takes place when I press that…
PHPFan
  • 756
  • 3
  • 12
  • 46
0
votes
1 answer

Nokia Asha LWUIT UIID and source code

I have to develop an application for Nokia Asha 501. I am using Nokia SDK 1.1 and the library S40-asha2013 from the ${SDK_HOME}/plugins/lwuit/lib. I am trying to figure it out the UIID stuff from all the examples I am studying, but I couldn't find a…
0
votes
1 answer

Displaying an html page in form (error connecting to stream)

I putted an .html page in a src folder of project in order to display this page on runtime. But I get an error on runtime that say:- Error connecting to stream. import javax.microedition.midlet.*; public class HtmlMidlet extends MIDlet { …
PHPFan
  • 756
  • 3
  • 12
  • 46
0
votes
1 answer

LWUIT focus issue

I have created a screen in lwuit which has focus issue. The screen is like a list screen in which each component have a profile pic at the left and a text in the middle. Each component is a container in which I have placed a button for profile pic…