Linked Questions
58 questions linked to/from Adding a library/JAR to an Eclipse Android project
1 vote
4 answers
3k views
how to add. JAR in my project? [duplicate]
Possible Duplicate: Adding a library/JAR to an Eclipse Android project I found an interesting project to me, Wanted to use his library but I can not add to my library, as in the example I do it in ...
1 vote
1 answer
229 views
How import libraries from another android project [duplicate]
I have downloaded an example android project and was able to run into. Now I want to integrate the functionality of that example into my own app. The example app uses api from a private library Jar ...
-2 votes
1 answer
264 views
How do I use a opensource Android project (no jar available) in my Eclipse Android project? [duplicate]
Using Eclipse I've started an Android Project. I wanted to create a FlowLayout but noticed that Android doesn't provide one in a native manner. I've found two opensource projects in Github that ...
85 votes
15 answers
103k views
Android Activity ClassNotFoundException - tried everything
I've just refactored an app into a framework library and an application, but now when I try and start the app in the emulator I get the following error stack trace: 06-02 18:22:35.529: E/...
31 votes
8 answers
37k views
Unable to resolve superclass error when referencing .jar library
I did an Android project and run it. It ran successfully. I developed a web service in Java and hosted it. It ran successfully. I exported the webservice into a .jar and added it to my Android ...
12 votes
6 answers
83k views
How to resolve javax.xml.bind.JAXBContext in Eclipse?
In my Android app I use: import javax.xml.bind.JAXBContext; But I get: The import javax.xml.bind cannot be resolved I do have com.viewstreet.java.eclipse.jaxbplugin.JAXBPlugin in my plugins list.
6 votes
3 answers
32k views
How to open PDF in Android
How to open pdf file from server without saving it on device and without using any third party application.because i don't want my user to download any application to use my apps.And i don't want to ...
6 votes
1 answer
30k views
Convert ArrayList of HashMap into JSON String [duplicate]
I want to convert ArrayList<Hashmap<String,String>> to JSONArray. I used JSONArray array = new JSONArray(array_list); but it does not work properly it returns ["{image=2130837526, ...
6 votes
6 answers
18k views
ClassNotFoundException Android
So I ran into a problem today while working on my Android program. I have a class that turns that an XML string into a Java object (third party) and it works fine in as a regular java project but on ...
4 votes
2 answers
14k views
Classes vs Activities in Android
I'm a beginner in Android development but not in programming itself. Anyway, this question might be a bit dumb. The question is: Are all classes in Android activities related to a UI element? I want ...
2 votes
2 answers
14k views
The import com.google cannot be resolved
I am trying to do a Map View in android (migrating from iOS). In the android SDK pannel I have google APIs (API 17) installed, which I was hoping would fix the problem. So in my source code I have: ...
9 votes
2 answers
8k views
No DataTypeConverter Method option in android
I want to use DataTypeConverter.printBase64Binary(.........) in my project. But there is no option coming through intellisense. Am i missing some jar ?
4 votes
2 answers
8k views
Eclipse doesnt recognize android.support.v13.app.FragmentActivity although I have android-support-v13 library
I'm struggling with this error and I really can't get it right. I try to import android.support.v13.app.FragmentActivity; into a class but it gives me the error: The import android.support.v13.app....
4 votes
1 answer
8k views
Import SwingX jar library in eclipse
I've followed the step here and here, but I still got an error. Here is the screenshot of the error. So what did I miss and what should I do to avoid this error: "The type org.jdesktop.swingx....
3 votes
1 answer
9k views
XStream NoClassDefFoundError
I've been beating my head against the wall most of the day on this one. I added the xstream-1.4.2 to java build path and call it from my code no problems: XStream yyz = new XStream(); String str_xml ...