How To Calculate The MD5 Hash
As you know, you shouldn't store passwords and other sensitive data in plain text. A good approach is to store the data's MD5 hash.
View ArticlePing Pong Madness Tutorial – Creating Android Games
The game will look like a Ping-Pong, but it will be more fun and exciting than hitting a single boring ball! The game will have two modes, lots of stages and local best scores.
View ArticleHow To Setup Your Development Workspace
This will teach how to setup your development workspace.
View ArticlePing Pong Madness – Splash Screen (Part 01)
This is a Splash Screen that appears while the game is loading and after a few seconds it will transition to the Level select screen.
View ArticlePing Pong Madness – Shot (Part 02)
Each Shot have a name, a return speed and a movement. The movement is a set of moves with a start, a horizontal speed and a vertical speed.
View ArticlePing Pong Madness – Sequence (Part 03)
Each Sequence has a name and a set of Shots. Each Shot has a type, a start and an interval.
View ArticlePing Pong Madness – Level (Part 04)
Each Level has a name and a set of Sequences and each Sequence has a type.
View ArticlePing Pong Madness – Mode (Part 05)
It will create two tabs, one for each mode: Tutorial and Level
View ArticlePing Pong Madness – Database (Part 06)
The Database will store all the Levels and the records information. There are public methods to fetch levels by type, create records, fetch records and fetch stars.
View ArticlePing Pong Madness – Level List (Part 07)
This part will get the Level list by Mode from the Database and then will display them on the corresponding tabs.
View Article