This is a two-part question about adding a third-party library (JAR) to an Android project in Eclipse.
The first part of the question is, when I try to add a third-p
First, the problem of the missing prefix.
If you consume something in your layout file that comes from a third party, you may need to consume its prefix as well, something like "droidfu:" which occurs in several places in the XML construct below:
This comes out of the JAR, but you'll also need to add the new "xmlns:droidfu"
or you get the unbound prefix error. For me, this was a failure to copy and paste all of the supplied example from the third-party library's pages.