I'm a total newbie to Android app development, so do excuse the lengthy explanation. Anyways, I have already developed my application (running successfully). Now, I want to integrate an open source app (quiz) into my application. So, when user presses a button in my app, it will then run the quiz application.
I have learnt from here (answer by Denys Nikolayenko) that there is a way to do it by converting the quiz app into .jar file, and adding it into my current project. I have already done that; to the point of adding the .jar file to Build Path (and it appears in Referenced Libraries) as stated here. Plus, the .jar file is also checked under the 'Order and Export' tab.
Now, I have a problem with integrating the .jar file into one of my button (so that the quiz app runs when I press the button, as mentioned earlier). Is there a way to integrate a .jar file in a button (I couldn't find any sample code anywhere)? Or is this concept of executing a .jar file wrong all-together?
If the concept is wrong, how do I integrate the quiz app into my app? I'm using Eclipse.