Responsive Ads Here

Thursday, April 21, 2016

Crazy Man Android Game

A) General Structure

A typical Android app consists of top level and detail/edit views. If the navigation hierarchy is deep and complex, category views connect top level and detail views.

Top level views

The top level of the app typically consists of the different views that your app supports. The views either show different representations of the same data or expose an altogether different functional facet of your app.

Category views

Category views allow you to drill deeper into your data.

Detail/edit view

The detail/edit view is where you consume or create data.


B) Getting Started

Android Studio is a new Android development environment based on IntelliJ IDEA. Similar to Eclipse with the ADT Plugin, Android Studio provides integrated Android developer tools for development and debugging. On top of the capabilities you expect from IntelliJ, Android Studio offers:
  • Gradle-based build support.
  • Android-specific refactoring and quick fixes.
  • Lint tools to catch performance, usability, version compatibility and other problems.
  • ProGuard and app-signing capabilities.
  • Template-based wizards to create common Android designs and components.
  • A rich layout editor that allows you to drag-and-drop UI components, preview layouts on multiple screen configurations, and much more.
Caution: Android Studio is currently available as anearly access preview. Several features are either incomplete or not yet implemented and you may encounter bugs. If you are not comfortable using an unfinished product, you may want to instead download (or continue to use) the ADT Bundle(Eclipse with the ADT Plugin).
Windows / http://dl.google.com/android/studio/android-studio-bundle-130.737825-windows.exe
Mac OS X/ http://dl.google.com/android/studio/android-studio-bundle-130.737825-mac.dmg
Linux/ http://dl.google.com/android/studio/android-studio-bundle-130.737825-linux.tgz

C) Installing Android Studio


  1. Download the Android Studio package from above.
  1. Install Android Studio and the SDK tools:
    Windows:
    1. Launch the downloaded EXE file, android-studio-bundle-<version>.exe.
    2. Follow the setup wizard to install Android Studio.
      Known issue: On some Windows systems, the launcher script does not find where Java is installed. If you encounter this problem, you need to set an environment variable indicating the correct location.
      Select Start menu > Computer > System Properties > Advanced System Properties. Then open Advanced tab > Environment Variables and add a new system variable JAVA_HOME that points to your JDK folder, for exampleC:\Program Files\Java\jdk1.7.0_21.
    Mac OS X:
    1. Open the downloaded DMG file, android-studio-bundle-<version>.dmg.
    2. Drag and drop Android Studio into the Applications folder.
      Known issue: Depending on your security settings, when you attempt to open Android Studio, you might see a warning that says the package is damaged and should be moved to the trash. If this happens, go to System Preferences > Security & Privacy and under Allow applications downloaded from, select Anywhere. Then open Android Studio again.
    Linux:
    1. Unpack the downloaded Tar file, android-studio-bundle-<version>.tgz, into an appropriate location for your applications.
    2. To launch Android Studio, navigate to the android-studio/bin/ directory in a terminal and execute studio.sh.
      You may want to add android-studio/bin/ to your PATH environmental variable so that you can start Android Studio from any directory.
That's it! You're ready to start developing apps with Android Studio.
Note: On Windows and Mac, the individual tools and other SDK packages are saved within the Android Studio application directory. To access the tools directly, use a terminal to navigate into the application and locate the sdk/directory. For example:
Windows: \Users\<user>\AppData\Local\Android\android-studio\sdk\
Mac: /Applications/Android\ Studio.app/sdk/
For a list of some known issues, see tools.android.com/knownissues.

D) Basic Operations


The following topics describe how to perform some basic development tasks with Android Studio.

Creating virtual devices

All the capabilities of the Android Virtual Device Manager are accessible directly from the Android Studio interface. Click the Android Virtual Device Manager  in the toolbar to open it and create new virtual devices for running your app in the emulator.

Installing SDK updates

The SDK Manager is also accessible to download new Android tools, platforms, and libraries for your app. Click the SDK Manager  in the toolbar to open it and check for updates.
  1. In Android Studio, close any projects currently open. You should see the Welcome to Android Studio window.
  2. Click Import Project.
If you already have Android Studio and android sdk, just import "Crazy Man with AdMob" folder into your workspace and you are already 
ICONS
To use custon icons for you app goto res> drawable-hdpi Size = 72x72
res > drawable-ldpi = 36x36
res > drawable-mdpi = 48x48
Export to APK
Right click on the project folder > export > export > export android application
default debug.keystore location is My Documents > .android > debug.keystore
default password is "android" ( without quotes )
If you have created your own keystore file then remember, DONOT FORGET THE debug.keystore PASSWORD.

Crazy Man with AdMob

This Screen Shoot :




Link Download :
1. Apk File
 Crazy Man Apk File

2. Source Code

 Crazy Man Source Code





No comments:

Post a Comment