Thursday, 22 March 2012

Android Magical Wizard game walkthrough



In this post we’ll have a walk through graphically very rich android game “Magical Wizard”. 

You can download full ads free version of Magical Wizard from the Google Play (Android Market).
Magical Wizard requires android version 2.2 and above to install.

Once you have downloaded and installed the Magical Wizard game, you will have the Magical Wizard icon.





Click on the “Magical Wizard” game icon. You will have the following Splash screen for few seconds.


After splash screen you will have the Magical Wizard game menu.


Let’s check out the setting options. Click on “Settings” button.


General Settings:
Vibrate On/Off – This will enable the vibration on click of any button.
Click Sound On/Off – This will enable sound on click of any button.
Background Music On/Off – This will enable background music while playing game and while loading splash screen.

Extended Settings:
Shuffle On/Off – If shuffle is on then icons on the game screen will be shuffled randomly. If shuffle is off then icons on the game screen will be arranged alphabetically.
Favorite Theme – Select your favorite theme. On game screen icons will be loaded with the selected favorite theme. Following 8 favorite themes are available in full version game.







Once you click on “Credit” button you will be presented with the following screen.



Play Magical Wizard

Let’s play the game. Click on “Start” button to start with the game. I have selected my favorite theme as “Country Flags” and shuffle option is on. On first screen you will be asked to guess any of your favorite flag from the set of 31 flags. My guess is “India” flag and click on “Go” button to proceed with game.


First Screen – Click “No” button as “India” flag is not listed on this screen.



Second Screen – Click “Yes” button as “India” flag is listed on this screen.


Third Screen – Click “No” button as “India” flag is not listed on this screen.


Fourth Screen – Click “Yes” button as “India” flag is listed on this screen.


Fifth Screen – Click “No” button as “India” flag is not listed on this screen.


Now Magical Wizard will reveal your favorite vacation destination. In my case It’s “India”.
Click on “Play Again” button to play it again.
Click on “Rate” button to rate this game.
Click on “More Games” to check other games available from Meticulous Apps.


Game screen with the shuffle option off


You are having an options to choose from 8 different favorite themes.

Numbers Theme & Fruits Theme

 Transportation Theme & Playing Cards Theme



Animals Theme & Social Networking Theme



Smiley Theme & Country Flags Theme


Click on “Exit” button to quite Magical Wizard game.

Enjoy Magical Wizard Game....










Tuesday, 20 March 2012

Android Game - Start application in full screen mode

Do you want your application to be started in full screen mode without android title bar ?


Here is your answer.
In this post I'll explain you the code and generic procedure to start application in full screen mode.

Please download and check following application as reference for the features mentioned in this post.


Google Play : https://play.google.com/store/apps/details?id=com.magicalwizard
YouTube: http://www.youtube.com/watch?v=ul4g229B2JQ
You need to call requestWindowFeature() function of the context object and pass "Window.FEATURE_NO_TITLE" as argument to set "no title" feature, turning off the title at the top of the screen.

You also need to call setflag() function for the current window and pass "WindowManager.LayoutParams.FLAG_FULLSCREEN" as argument to enable the full screen feature for current window.

It's good practice to write the full screen code in some generic class which can be used across the activities as you have to call it from every activity in your application to start all application activities in full screen mode.



Actual code implementation will be as follows:

Note: You need to call setFullScreen() function from each activity before setContentView() function.



Magical Wizard game in Action: