Top level component that serves as the root for the UI, this Container handles the menus and title while placing content between them. By default a forms central content (the content pane) is scrollable. Form contains Title bar, MenuBar and a ContentPane. LWUIT offers a comprehensive toolbox for ...
4
votes
2answers
93 views
how to create popup window when pressing numeric keys in sun java wireless toolkit 2.5.2?
I want to create popup window in sun java wireless toolkit when pressing numeric keys on Mobile. I don't know whether it is possible or do need to use some additional technologies for that?
And also ...
3
votes
1answer
41 views
You must include the platform port before the LWUIT in the classpath: How to solve this run time exception? [closed]
Possible Duplicate:
You must include the platform port before the LWUIT in the classpath runtime exception
I am just now started the LWUIT use in J2ME. I don't have more knowledge of LWUIT ...
2
votes
1answer
69 views
How to make visible notification bar (battery info, clock etc.), when I use my java me app?
I have app (LWUIT, Java Me). When I run the app on device, it occupies the all screen. But I want top panel (notification bar of device) is visible.
What are the solutions? Maybe any settings for ...
2
votes
1answer
102 views
How to detect key pressed event in LWUIT form?
I have written simple j2me program with LWUIT package.I have added one Form in my MIDLET class file. Suppose,user press a key then I want to show another Form.But I couldn't be able to capture key ...
2
votes
2answers
54 views
How place the components the front of another one?
I want to place the components A and B over component with List. I need that would text of list will be to visible. I can not find which layout can do it.
How this behavior is in lwuit? What solutions ...
2
votes
1answer
51 views
Different border for Dialog. Set style for one
How I can set different border for Dialog. for bottom, top, left and right border.
I need to set round angle for bottom left and right angles. But top angles have to be direct.
2
votes
2answers
168 views
How create drop down menu, use LWUIT? What solutions exist?
I need to create drop down menu (see the picture). What methods are there? What should I use?
2
votes
1answer
49 views
How to know programmatically the actual modified component?
In J2ME there is the interface ItemStateListener which can detect exactly the item which is being changed. Is there a similar way in LWUIT ? I tried using the DataChangedListener interface but it ...
1
vote
1answer
23 views
Get Canvas in LWUIT app
I tried set fullScreenMode(false) for my app (LWUIT). But can not get Canvas.
1 way: com.nokia.mid.ui.LCDUIUtil.setObjectTrait(javax.microedition.lcdui.Display.getDisplay(this).getCurrent(), ...
1
vote
3answers
68 views
How do you add a line break in a Label using LWUIT?
I've created a Label on a Form, but is too large to show it in one line, is it posible make a break line? I am using LWUIT on J2ME.
Thank you.
1
vote
1answer
28 views
can't re-launch LWUIT Application after calling destropApp() on Wireless Toolkit 2.5.2?
I am using Sun java wireless toolkit 2.5.2 and LWUIT for my j2me application.I have added one Command Exit. When pressing the Exit Command,i just calling destroyApp(true); It is successfully exited ...
1
vote
2answers
62 views
Is it possible to re-show the last opened Form when the MIDlet was paused?
The application is running , the user is making some TextField editing. Then a call is received , so the MIDlet enters the paused state. When the conversation is finished then the application is ...
1
vote
2answers
115 views
How to set background image for Dialog?
I am trying to do this:
public class DialogMenuHawaii extends Dialog {
Style s = UiFactory.getBaseStyle();
s.setBgTransparency(0);
s.setBgImage( <my image >);
...
1
vote
1answer
59 views
How set scrolling only for BorderLayout.CENTER?
I have top bar, list and bottom bar.
this.setLayout(new BorderLayout());
this.addComponent(BorderLayout.NORTH, bottomBar);
this.addComponent(BorderLayout.CENTER, list);
...
1
vote
2answers
89 views
OutOfMemory error , use lwuit
I have some button on my form. When I click on every buttons run new form with same buttons. When I am clicking many times, show error OutOfMemory.
I think this is because I create a lot of form ...
1
vote
2answers
136 views
PNG Image is badly stained when set as LWUIT Form's background image
I want to make a png Image as the background image of a LWUIT Form. The problem is that the image is altered : there are stains in the image after setting it as the Form's background image. Here are ...
1
vote
1answer
71 views
How positions component on the bottom of my screen
super();
this.setLayout(new BoxLayout(BoxLayout.Y_AXIS));
this.addComponent(new TopBar());
this.addComponent(new MyList());
this.addComponent(new BottomBar()); // must be below
I tried to use ...
1
vote
3answers
89 views
How to put 4 button in row use lwuit? At the same distance
how to put 4 button in row, as in the picture:
The distance between the elements should be changed at different resolutions
1
vote
1answer
157 views
Menu Bar Height in the LWUIT Form
Application develop in the J2ME using LWUIT. When I port this application on the Samsung Device it create the following problem.
int h = Display.getInstance().getDisplayWidth();
It returns 388 for ...
1
vote
1answer
37 views
Why doesn't IN transition work for the first opened Form?
In the startApp() of the MIDLet I show a Form ( the main Form of the application ) . The problem is that even if I set setTransitionInAnimator then the Transition is not effect at runtime ! So how to ...
1
vote
1answer
78 views
How to remove the Title-bar of a LWUIT Form?
In the actionPerformed of a Button I want to remove the Title-bar of the actual LWUIT Form. How to achieve that? And how to redisplay it again after a certain action has been complete?
0
votes
1answer
23 views
LWUIT Tab navigation/list focus issue
I have embedded 3 'TABS' on top of a form. Each tab has a 'LIST'. Whenever I change focus from one tab to another, I want my lists to have focus. How do I ensure that my lists always have focus?
I ...
0
votes
1answer
35 views
LWUIT Scroll List issue
I have 5 Lists in my Form. They are hidden and when I show one of them, the focus go inside the List and the Form doesn't scroll. I want to show all the List, navigate across it and keep my ...
0
votes
2answers
26 views
IllegalArgumentException when using Android native component in LWUIT
I am trying to use native components in a LWUIT app on Android platform.
private Component createNativeTextEdit() {
final Object[] result = new Object[1];
...
0
votes
0answers
22 views
HTMLComponent not scrolled down completely to the bottom
I am using LWUIT Form and in it using htmlComponent. The `Form is loaded on the device but it is not scrolling down completely to the bottom. It is however scrolled to the last link only.
How to ...
0
votes
1answer
44 views
How to Change the LCDUI form size in J2Me?
We are using LCDUI for our j2me application and I want to change my form size to minimize for looks like popup window. But I can't resize the form.
But we have one method in form class ...
0
votes
0answers
46 views
how to close a dialog box in lwuit? [closed]
Possible Duplicate:
How can I Dispose Dialog box From LWUIT Component
I am Using the Following Lwuit code to display a Dialogbox. when I press Key 0 a dialog should show as like in Switch ...
0
votes
1answer
54 views
How to call Exit Command when I press Key # in Lwuit Mobile Application?
Can I assign the Exit Command to the # key in an Lwuit Application? When I press the key #, the Exit command should be called automatically and exit the application.
0
votes
1answer
66 views
how to check which key is pressed in LUWIT?
I am using LWUIT package for my j2me application.In my application, i have extends Component class and then draw strings on the component.Now i want to get the key code and then draw string on the ...
0
votes
2answers
114 views
Accessing forms created through LWUIT resource editor using code
I am trying to develop a quiz application using LWUIT resource editor and am having great difficulty.
I have created two Forms 'GUI1' and 'GUI2' .
GUI1 displays the following:
A question(in the ...
0
votes
1answer
46 views
How set layout for Dialog?
I tried to use
dialog.setLayout(BoxLayout.Y_AXIS);
but it doesn't work.
How can I set the layout?
0
votes
2answers
95 views
How to remove the screen dimming when is presented dialog?
I want to be able to press the other buttons on my screen when open dialog.
Dialog menuDialog = new Dialog("Dialog Demo");
menuDialog.setTimeout(1000);
menuDialog.show(90, 90, 10, 10, true);
0
votes
1answer
24 views
Strange behaviour with Transitions
I set transitions to a Form :
public class Ecran extends Form {
private Transition transIn = CommonTransitions.createSlide(CommonTransitions.SLIDE_VERTICAL, true, 250);
private Transition ...
0
votes
1answer
99 views
How to make it possible to add a LWUIT Form inside a LWUIT Form?
I tried to add a LWUIT Form into another LWUIT Form but I received an internal error in runtime :
Installing suite from: http://127.0.0.1:1975/SmartPhoneBanking.jad
...
-1
votes
1answer
32 views
how to call a command while pressing key # in Lwuit Midlet? [closed]
Possible Duplicate:
How to call Exit Command when I press Key # in Lwuit Mobile Application?
How Can I Call Command like SELECT, OPEN when I press Key # in LWUIT MIDLET Mobile Application.
-2
votes
3answers
159 views
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 ...