I am working on a specific project and am a little away from my usual romping grounds (C++).
I've been commissioned by some of my co workers to make an App for them to help them in their specific job. In order to do this I need to write an App that takes 10 numerical values and compares them through a database and then displays the equal to or less than matches in a list. Example: User inputs 10,10,10,0,0,0,0,0,0,20 user then hits go New screen output: match1: "item name and description" match1 values: "10,10,9,0,0,0,0,0,0,10" match2: "item name and description" match2 values: "0,0,0,0,0,0,0,0,0,0" match3: "item name and description" match3 values: "10,10,10,0,0,0,0,0,0,20" I am sure you get the idea. So my questions are as follows: Should I (can I) (is there a more efficient way in JAVA?) create a class for the items and load them up into a vector from a file(if i can even do that in an app) Would it be better to just do an XML and read and compare directly from the XML if, so could you point me at a good resource on doing this. Or am I way over shooting and is there a very simple way. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

