What is an easy way to draw sprites without OpenGL?

We are currently developing a simple arcade game for Android, and we are interested in adding some visual effects to it. Like fading or appearing animations, and so on. Is there an easy way to do this without OpenGL, for example, just using some enhancements for ImageView?

+3
source share
1 answer

You can use BitmapFactory and Bitmap Class to perform simple image manipulations. See http://developer.android.com/reference/android/graphics/Bitmap.html for what you can do with this class. It supports simple things like rebooting, fading, creating ScaledMaps, and managing screen images at a basic level. For some simple instructions and examples, see:

+2
source

All Articles