MIDlet is an application that uses the Mobile Information Device Profile (MIDP) of the Connected Limited Device Configuration (CLDC) for the Java ME environment
Questions tagged [midlet]
263 questions
1
vote
2 answers
dynamic button creation to the form using lwuit 1.4
public class StateMachine extends StateMachineBase {
public Container con1;
protected void beforeMainForm(Form f) {
con1 = findMenucon(f);
super.beforeMainForm(f);
} } //class mainmidlet() public void run() { …
super.beforeMainForm(f);
} } //class mainmidlet() public void run() { …

raja
- 368
- 2
- 13
1
vote
1 answer
Getting RSSI value using J2ME
I am developing an application where I need to retrieve the RSSI value of a remote device.
I'm using J2ME, and I was wondering if exists a specific API or function that can help me with my problem.
Do anyone have a suggestion to gave me?
Thanks in…

user864345
- 11
- 1
1
vote
2 answers
Strange Error in Java ME
I've just starting delving into the wonders of Java ME but have become frustrated when trying to create a thread...
Below is the code which compiles absolutely fine. However, as soon as I install it on my G600 and run it, 'Java Game Error' pops…

Thomas
- 13
- 2
1
vote
0 answers
How to make a text readable by a text to speech in a j2me application
I'm writing a midlet that write some lines of text on the screen.
my problem is that using a StringItem, the TTS reads just the last line on the screent

user842892
- 11
- 1
1
vote
2 answers
how to disable lwuit vkb?
The ability for disabling vkb is included in the new svn source code...
But by default vkb comes in midlet...
How to disable it in midlet...
In the old documentation it was given
To use the LWUIT Virtual keyboard an application must call:
…

aNi
- 1,359
- 11
- 17
1
vote
0 answers
Trouble with download jpeg image
I need to download jpeg image and show it in my midlet.
But when I try to run this code, image on screen is broken.
What is wrong?
public void startApp() {
HttpConnection conn = null;
InputStream is = null;
try {
conn =…

oxigen
- 6,263
- 3
- 28
- 37
1
vote
4 answers
Set background image / color in midlet
I create one application used form class now its very simple,I want set background image or color.I searched over 2 days but no use if any know share to me...

Rajamohan Sugumaran
- 4,439
- 4
- 22
- 19
1
vote
0 answers
Blackberry Messenger SDK :app download invite (in a MIDlet)
I have a MIDlet application already running.
I am just wondering if I can take advantage of the BBM SDK features in my already running midlet app.
More specifically, I would like to be able to send an invite to download my app to my bbm contacts. I…

wpYM
- 21
- 3
1
vote
0 answers
Using the BBM SDK in a midlet application blackberry
I have a running midlet application (for blackberry) and want to incorporate a feature "Share on BBM" which allows the user to share the download link of my app to their BBM contacts
I am using the Blackberry Plugin for eclipse.
Sending a download…

wpYM
- 21
- 3
1
vote
1 answer
Need help to track ball position in JAVA
I am creating a bouncing ball in Netbeans using J2ME Loader.
I have done the bouncing ball parts but struggling to track the ball position.
I have searched online but not so much information there. Anyone can advice?
Here is the code:
package…

Idris Zamberi
- 43
- 7
1
vote
1 answer
IRC channel for Java Mobile development?
I'm trying to get an idea of how difficult it would be to build a simple application for feature phones, and the best way I can come up with is to learn the Java for Mobile Devices framework and dive into writing something.
However, I'd like to be…

Arkaaito
- 7,347
- 3
- 39
- 56
1
vote
2 answers
Midlet connectivity via broadband or GPRS
Midlet using HttpConnection to connect a webservice application.
A mobile can use a wireless broadband to connect to internet or can use internet facility provided by the network provider i.e. Vodafone or Virgin which is I think known as GPRS.…

Bhushan Bhangale
- 10,921
- 5
- 43
- 71
1
vote
2 answers
Deploy midlet on Nokia mobile
I have written a midlet which asks username and password and connect to servlet running on tomcat to validate. When I run the midlet on the emulator provided by sun toolkit, first time it asks "This midlet wants to connect to http://... using…

Bhushan Bhangale
- 10,921
- 5
- 43
- 71
1
vote
1 answer
How can I start a midlet automatically at a specific time?
I want to use the Push registry to start the midlet at a specified time. When I run the app, even when the time is exceeded the midlet is not started..
public void startApp() {
System.out.println( "AlarmMIDlet: startApp" );
try {
…

Manish Basdeo
- 6,139
- 22
- 68
- 102
1
vote
2 answers
How to display HTML content in J2ME?
I am developing a MIDlet for a Nokia (series 40). I want to display an HTML content. How can I do that?

Nimmy
- 5,051
- 7
- 33
- 32