Thanks for the reply.
Here's a small example of XML that will not display anything:
<item>?</item>
Here's a small example of XML that will display everything except the questionmark:...
Type: Posts; User: arinu; Keyword(s):
Thanks for the reply.
Here's a small example of XML that will not display anything:
<item>?</item>
Here's a small example of XML that will display everything except the questionmark:...
Hi,
While parsing through the characters of an element, I noticed that questionmarks were left out. Also some other characters (&,/,€,",') create an error. Why is this?
P.S. I use...
Hi,
I also have the same problem. Haven't found a solution for it yet... working on it.
-
Ari
Digital signatures don't last the lifetime of a device. It lasts for a few years (depends on what you want). The cost for a signature depends on the time that you want the signature to last. See...
I just noticed that showNotify and hideNotify methods actually do something by default on the S60 SDK. The javadocs say that by default they shouldn't do anything... Has any1 else bumped into this...
Any updates on this matter? Still waiting for an answer...
Btw, if you try 2 of my CustomItems in the same form 1 after the other, the traverse method works very differently on the Java wireless...
Read this: http://java.sun.com/javame/reference/apis/jsr118/
and click on CustomItem
The traversal method is called by the application I think... You don't manually call it.
--
Ari
The problem can't be in the parameters because it works well when the CustomItem is still in view. There must be something wrong with J2ME's implementation of CustomItem's traverse() -method.
--...
Ok. Go to the item that is under the CustomItem. Go up twice and you will notice that "up" is printed twice to the system. Now, go down to the very last item and come back up. "up" is printed only...
When you scroll down to the last item and come back up, the CustomItem traverse method is not called correctly. It runs perfectly if you can see the CustomItem in the screen, but when it goes above...
This is my current program:
package main;
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
/**
*
I tested it too. I stripped everything in my program and it all worked well until I implemented the traverse() method. There must be something wrong with the traverse implementation to form because...
Thanks for your replies, I'll try out something tomorrow when I have the time.
Thanks,
Ari
You can put it here.
Hope it works,
Ari
I created a small program for you. Test this and tell me if you get the same bugs? Go to the bottom of the form and come back up. Notice how traverse() is called only once when you go completely from...
That's what I would think too, but there is nothing wrong with the traverse if the CustomItem hasn't gone above what is visible on the screen AND I've come back to the CustomItem.
I'm using S60...
I checked the demo, but it didn't even use traverse to jump around. Even with that demo and my traverse, it would work fine. It's only when I can no longer see the CustomItem in the form and then I...
Thanks for the reply.
The form works perfectly without the CustomItem of course. If I append the the CustomItem at the and of the form there will be no errors because I can't get the CustomItem...
Hi,
I have a form with x number of items. Somewhere in between there is a CustomItem. My traverse method always retuns true and I have implemented my own code to jump in and out of the CustomItem....