Tell me more ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

I want to build and android app that visualizes real time data (2D animation). I set up a UDP channel that get the data, now I want to visualize it in real time .

I know that I can use OpenGL ES, but apart from that , is there any other tool to for visualization programming?

share|improve this question
2  
This question is pretty much, which technology to use? And, as answered in the FAQ, isn't really suited for the site. – Byte56 Mar 26 '12 at 14:43

closed as not constructive by Byte56, bummzack, Josh Petrie, Tetrad Mar 26 '12 at 16:25

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

It depends on your current programming experience (if any). It is definitely possible to learn OpenGL ES in a matter of weeks depending on how well you pick up on it. As for real time data for a mobile device, you may want to see how much data you burn through because a constant stream of data to a phone could eat up the users data plan fairly quickly. It might work best if you have it set to update every X minutes as opposed to constantly. However, that all depends on what you are making.

Most android phones should be able to handle what you are wanting to do with not much problem(unless you plan to use a ton of heavy 3d work or something)

If it is charts and graphs that you are making, it might almost work better (depending on your situation) to do this on a website using PHP or .Net and just have the user go their on their browser. That way, the server is handling most of the processing and the phone just gets the end result. That would reduce the amount of data being sent to the phone and also reduce the requirements of the phone.

share|improve this answer
It's not just charting it's kind of animation , for now in 2D . getting some sensor's info from the car and visualize the location and so on ... – matarsak Mar 26 '12 at 13:59

If you're thinking about creating graphs/plots of the data, here is a Stack Overflow response that describes several Android charting libraries: http://stackoverflow.com/questions/424752/any-good-graphing-packages-for-android/

share|improve this answer

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