Questions tagged [nokia-s40]

Nokia Series 40 is a software platform and application user interface (UI) software on Nokia's broad range of mid-tier feature phones.

Nokia Series 40 is an embedded software platform that is open for software development via standard or de-facto content and application development technologies. It supports Java MIDlets, i.e. Java MIDP and CLDC technology, which provide location, communication, messaging, media, and graphics capabilities. S40 also supports Flash Lite applications. S40 devices do not support true multi-tasking and do not have a native code API for third parties, its user interface may appear to be more responsive and faster than other Nokia platforms on similar hardware.

142 questions
1
vote
2 answers

JSON Object to POJO in J2ME

I'm supposed to port an Android app into Nokia S40 app. I used GSON in Android to parse JSON. But unfortunately GSON is not compatible with J2ME. I tried Flexson and Jackson but no luck. So is there any library available to Serialize/Deserialize…
Umayr
  • 97
  • 6
1
vote
2 answers

Getting Unique Id from all java phones especially from S40 devices

I have requirement of getting an unique identification number programmatically from all j2me supported phones. As we already know getting IMEI / IMSI in S40 devices is almost not possible, bluetooth MAC address / obex push profile UUID may help. But…
AndosBerry
  • 145
  • 1
  • 12
1
vote
1 answer

LWUIT : How to Prevent Button change its color in J2ME

I've created an apps using LWUIT. It use the header bar, like this It use the container. Under this header bar container I've created the scroll able list. The strange part is, if I scroll this list, the color of the button (the menu button and…
giripp
  • 285
  • 1
  • 4
  • 13
1
vote
1 answer

IllegalArgumentException while using RMS in nokia s40

I am developing an app which stores username and password in RMS the app is working fine on Nokia s60 but in Nokia s40 phone the application is giving IllegalArgumentException and then app is closed. I am not able to understand what is the problem…
1
vote
2 answers

Try/Catch seems to be doing nothing in Java ME

Consider this: public class Minesweeper extends MIDlet implements CommandListener { public static String error = ""; public void startApp() throws MIDletStateChangeException { try{ int int = 5; } catch (Exception e) { …
ACarter
  • 5,688
  • 9
  • 39
  • 56
1
vote
2 answers

socket connection works good on emulator but can't send in real device(j2me)

I am developing a server/client application .The application works fine on an emulator but when I test it on a Nokia 5200 or a Nokia 6303i, although the connection establishes successfully, the server blocks on first read method. In other words, the…
CoderInNetwork
  • 2,923
  • 4
  • 22
  • 39
1
vote
0 answers

Revertive SMS from Nokia mobile to MAC

I want to read sms from My nokia mobile through java application,mobile is connected to Mac via usb I have tried AT-commands ,I can send sms ,But can't read them I have noika 6303 S40 series phone. there is something Called PC suite sdk but not…
1
vote
1 answer

blank screen after showing alert in j2me

I have developed a game but this is a serious problem I am facing. I don't have any threads in my code , but whenever I use alert Display.setCurrent(my_alert)// my_alert has a timeout of 3000ms then after this alert, a blank white screen…
E1T1
  • 139
  • 1
  • 3
  • 11
1
vote
0 answers

Blank screen in game after automatic keypad lock in nokia S40

After the automatic keypad lock, when I unlock it, there appears a blank white screen and after 3-4 seconds, the game field appears. Any ideas, how to avoid this behaviour? I want that the game canvas should be immediately displayed after the…
E1T1
  • 139
  • 1
  • 3
  • 11
1
vote
1 answer

lwuit number of tabs

I have created number of LWUIT Tabs,when i display those tabs on my form Screen,i am able to see only 4 tabs on my form screen,remaining tabs are displaying but those are hiding,How to display my form with tabs userfriendly? tabs.addTab("Tab1",…
String
  • 3,660
  • 10
  • 43
  • 66
1
vote
2 answers

How to add a pause between player move and AI's move in checkers game?

When in my game, a player makes a move, its not visible until the AI move is computed. And then both the moves are shown together. I want to show player's move and after that, AI move (after its computation). I tried Thread delay but no use. How to…
E1T1
  • 139
  • 1
  • 3
  • 11
1
vote
0 answers

LWUIT4IO (v1.5) ConnectionRequest's readResponse() Issue - Nokia SDK 2.0

I have been porting an existing J2ME mobile app, that allows users to view archived news videos, to the latest Nokia SDK 2.0 platform for Series 40 full-touch devices. I am using both the LWUIT and LWUIT4IO technologies for the UI and Network…
1
vote
1 answer

is there is any analytical tools for Nokia S40?

I have a question , is there is any analytical tools for Nokia S40 devices such as Flurry analytics For android and iphone ??
Bayan
  • 283
  • 4
  • 14
1
vote
1 answer

Scrollable in my component

I can not set scrollale for center component. But NORTH and SOUTH have to be fixed. this.setLayout(new BorderLayout()); this.setScrollable(false); this.addComponent(BorderLayout.NORTH,…
Tim
  • 1,606
  • 2
  • 20
  • 32
1
vote
0 answers

HttpConnection sending another request after 30 sec

I'm writing one application in which I'm sending post request to server. The problem is that Nokia S40 series phone sends 2 request if it doesn't get response within 30 sec. I have checked the same with s60 series phone in my app is working…
Nirav Bhandari
  • 4,550
  • 6
  • 32
  • 59