• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Animating a character in Eclipse?

Hello people, I'm really newbie to this programming thing, and I was just trying to do a really simple platforming game. I got to make a really nice menu, with all buttons working...but when I got to the part of creating a character and making it move, I just couldn't find info anywhere.
Could someone explain me (or just post a bunch of code) about how to create a character, and to make it move left/right when I press some kind of button? ( and how to make that special button too) Thanks to whoever answers.
 
Maybe, but as I said, I just can't find them tutorials. Could you post a link to some that might help me with this? (Not OpenGL ones, at least for now) Thanks :)
 
It is not a good idea to make real time games with the Android Canvas framework. the canvas framework is event-driven and is simply not fast enough to be of use in real time games.

OpenGL is the route you should go, however keep in mind that OpenGL methods in java are access through JNI and JNI calls are not cheap. Even with OpenGL, a lot of optimization is needed.
 
Thanks, jonathanrz, I'll check that out. And jonbonazza, maybe I should use OpenGL, but anyway, I asked for some tutorials/coding help. Would be nice if you could give me links to some tutorials or something? Thanks!
 
There are tons of tutorials on blogs around the web. What you need to do is think of exact topics you want to start learning and Google them. For example, if you want to develop games not using OpenGL, then start by looking at how to work with the Android Canvas API.
 
I agree with JonBonazza, I'm also learning Android and thought the same as you, I will search for tutorials and do them all before start making my own aplications.

I spend two days lost in so much information, so I understood that I just need to make the Notepad tutorial, with this tutorial, you will learn everything you need to walk in android world, then, as JonBonazza talked, search for exactly what you need.
 
Back
Top Bottom