Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Ive been learning android from books now and Ive gotten the hang of itThe problem is this,I just dont know how to reference APIs,For example,I want to parse Xml ,Some codes are very familiar so I almost know it off hand but I dont seem to know how to use the API and get those codes from scratch..Now I want to start and Im confused,I cant be copying and editing others codes forever P.S:I am not looking for a debate here,I just want to know how I am missing the obvious..I have the basic experience in Java

And I know how to import APIs

share|improve this question
Its just a long list of methods,Sometimes when I know what to implement,It just gives me errors,I can be posting to stacjoverflow but itvwoukdnt make sense if I post 60.questions over a 20 line app thats why I asked this – Oyeleke Okiki Sep 21 '12 at 17:31

2 Answers

Just import the required api in your project and use it.

share|improve this answer
I can import them,I just dont know how to reference the API to build what I want – Oyeleke Okiki Sep 21 '12 at 18:00
In Eclipse, go to "Android-Project" -> Properties -> Java Build Path -> Order and Expert, then select the jar you wish to reference and move it on top of all the entries. – Devrath Rathee Sep 21 '12 at 18:11
I mean I dont know how to use the APIs,I can import them quite well – Oyeleke Okiki Sep 22 '12 at 6:08

If you want to parse XML, for instance with JDom, you need to import that library to the project before you can use it. Maybe you forgot to import the jars?

If that's the problem just copy the jars on the libs directory of your android project.

share|improve this answer
I can import them I just dont know how to use them – Oyeleke Okiki Sep 21 '12 at 17:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.