On the SAX handlers' function, 3 element name present:
For example, when <foobar:test xmlns:foobar="http://example.com/foobar"> tag is seeked, SAX call startElement function with following parameters:
uri
"http://example.com/foobar"
localName
"test"
qName
"foobar:test"
When handling the Namespaceless XML documents, only qName seems to be used. But old Java Runtime such as Android 1.5(?), only localName seems to be used.