Sorry folks!
Now I got the proper SDK for 3510i. The emulator seems to work fine now.
I still wonder how you guys are doing to make device independent applications (I'm talking about canvas...
Type: Posts; User: bjajo780; Keyword(s):
Sorry folks!
Now I got the proper SDK for 3510i. The emulator seems to work fine now.
I still wonder how you guys are doing to make device independent applications (I'm talking about canvas...
Hey guys!
This is very important! You must have the same problem, right?
/Bjarne
Hi!
Why do I get a s60-emulator instead of an actual 3510i emulator (my setup: jb9 personal + mobile set 3.01)? I'm developing an application for a wide range of users, so I really need it to work...
ok, now i got it to work.
thanks anyway!
//Bjarne
Hello!
I found "public final String getAppProperty(String key)" in the midp api, which i suppose does the job, but i don't get it to work! It returns null with all the keys I have tried so far.
...
Hello!
I'd like to display the version number of the JarJad-package in my application. Can this be done in j2me?
cheers,
Bjarne
I think the problem is that you installed the Series 60 SDK in a path that has spaces (at least I think that was the sollution for me when I had the same problem)... Try replace those " " with "_"...
Hello!
I'd like to test my applications on other devices than my 6310i. Are there any more emulators than the 6310i (except for the standard emulators)? If so, where can I download those?
...
That didn't work actually. When i try do do it it looks like this:
Change[]station (with a square instead of a space)
Any other suggestions?
/Bjarne
Thank you for your reply! I solved it by just reading keyCode (without converting it to gameAction...). As easy as that!
I suppose my application won't work on other devices than 6310i, but that...
Hello!
I have implemented a list which the user can scroll by using up & down keys. The list consist of more than 30 elements of which 4 is shown on the screen at the same time. This is of course...
It seems like the problem only occurs on the emulator.
The emulator buys it, but my 6310 only shows the text before the space. If I define a soft keys caption to be "Change station" the output will be
"Change station" (on the 6310i emulator)
"Change"...
I have the exact same problem. I use this code to read the inputstream from the http server:
-----CODE---------
int byteRead = 0;
int chunkSize = 1000;
byte[] data = new byte[len];
while...
Darn! :( I thougt I had it right there, but how wrong was I?
This is my suggestion to the problem, wich works fine the first time I call the sendTo function, but fails by the second time.
Can...
I think I solved it :) The problem was that I didn't catched and threw the exceptions the right way... I will post the solution later as soon as I have cleaned up the code a little bit!
/Bjarne
Well... that's a good idea, but I don't think it will work in my case. The communication between the mobile and the server side won't be constant, but forced by the user. The user should be able to...
Hello!
Right now I'm using something like this:
void postViaHttpConnection(String url) throws IOException {
HttpConnection c = null;
InputStream is = null;
OutputStream os = null;
try {
c...
i solved the font problem btw. (by using g.setFont(Font.getFont(Font.FACE_SYSTEM,Font.STYLE_PLAIN,Font.SIZE_SMALL)); )
/Bjarne
Hi!
This is maybe not a J2ME issue, but I'd like to make an application that shows a map. The map is a couple of times larger than the 6310 canvas, and my idea is to pick out a small area of the...
oops. that didn't look too good but i think you understand =)
..and of course that value is what you should multiply your arc width with, x was not a very good choice of variable name!
I tried to do the same thing and of course got the same result. After some measuring with a ruler I found out that my circle was exactly 10.0 mm high and 8.5 mm wide.
If you want it to be 10.0 mm...
Perfect!
That did work on my first CTRL+C & CTRL-V attempt. Thank you =)
/Bjarne
Thank you Sudnyesh!
Your answer did really point out the information I was looking for (and hoping for)! I'm going to experiment with this gprs-stuff for a period of time now, and hopefully I...
Hi!
I'm currently in a project for the summer and i'm supposed to test if we can use gprs to show some realtime info on a mobilephone as a complement to our web services. The idea is that the user...