Hi guys,
I have posted both issues (mouse drag event + polylines) to our Browser support tool. Let's see what comes out of it.
You could also help by resending these two to...
Type: Posts; User: dcrocha; Keyword(s):
Hi guys,
I have posted both issues (mouse drag event + polylines) to our Browser support tool. Let's see what comes out of it.
You could also help by resending these two to...
I'm here to update you on an example I wrote for some company that wanted to install their Java ME application along with some native components as a single .sis file. This has been a persistent...
Can you send me a test midlet, with only the code in question? I will test in some devices and if there's indeed a problem, report this error back to the S60 R&D.
Please put it somewhere I can...
Why do you need a DataSource at all? You are trying to re-implement something which is already done.
Why do you want to use a DataSource? If you're not implementing your own protocol, I see little point in doing it.
Anyway:...
Actually the previous thread was about consuming video streaming from Java ME. Producing it, from the device camera to another device, is not possible. You will have to commit the recording from time...
Hi, have you tested this on a real device? It seems to be an emulator problem, since I remember listing extended fields (ID > 256) on an N95 at least.
Daniel
I usually come across "Invalid file" when there are differences in some attributes between Jad and Manifest files, or one of the two is invalid (most likely the manifest).
Downloading a big...
Hi there,
Is this the only code you call in the block? Any other lengthy I/O operation before or after this method call?
Daniel
I guess it's pretty obvious that "name" variable is null.
Daniel
If you just make Assisted available, and you have a data connection, the first fix from the satellite comes within 10 to 20 seconds, insted of 1 to 2 minutes...
[]s
Daniel
Simple answer: Nokia Maps uses locally-stored maps in vectorial format, thus they are fast to load (for being local) and can be resized/rotated in any possible way (for being vectorial).
Google...
You can view live videos by using Mobile Media API (JSR 135) and accessing streaming servers, with URLs like "rtsp://someserver.com/somevideo.rm".
Sending live videos from Java ME is not...
S40 3rd Edition onwards, S60 3rd FP2+
[]s
Daniel
No good for my N95 and N95 8GB. It seems a problem on their side... i got "No gateway reply" from S60's browser.
http://wiki.forum.nokia.com/index.php/KIJ000296_-_Additional_JAD_attribute_for_changing_Canvas_updating_feature
Daniel
There's no way to do that from Java ME.
[]s
Daniel
There are no issues regarding OTA on N73. You have to check whether your carrier is not blocking access to those services. And it would be nice to be using an Internet access point, not a WAP one.
I don't think your environment is set correctly. You need NetBeans Mobility Pack, which comes with all J2ME APIs, including JSR 172 - Web Services API. It seems like you're trying to use J2SE APIs in...
hideNotify():
if(player.getState() == Player.PREFETCHED)
{
PAUSEPLAYER();
}
This portion is wrong. If the player is already playing a song, its state is "STARTED", not "PREFETCHED". The way it...
The emulator environment is so different from the one on the phone. I would suggest you to reduce the heap even further, but I still don't think you can create an exact copy of the phone's...
To transmit anything via SIP protocol to another SIP device you need to create a SipClientConnection and open an output stream by calling openContentOutputStream().
This will work fine for...
hehe, it's all right. I have just finished writing a book chapter on "Best Practices and Performance" for MIDP applications so I got all this stuff fresh in my mind. Otherwise I may as well have...
Yes it will eventually consume all memory. And processing time. And the device battery.
You should never loop infinitely without pausing the thread for some time, to give a chance for other...
When your app is running normally, can you connect to your service from another device or a PC? That is, your BT service is correctly registered with the Service Record?
Daniel