Difference between revisions of "Android 4 App Development Essentials"

From Techotopia
Jump to: navigation, search
Line 181: Line 181:
 
#* [[Detecting Common Gestures using the Android Gesture Detector Class|Testing the Application]]<br><br>
 
#* [[Detecting Common Gestures using the Android Gesture Detector Class|Testing the Application]]<br><br>
 
# [[Implementing Android Custom Gesture and Pinch Recognition]]
 
# [[Implementing Android Custom Gesture and Pinch Recognition]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|The Android Gesture Builder Application]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|The GestureOverlayView Class]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Detecting Gestures]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Identifying Specific Gestures]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Adding SD Card Support to an AVD]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Building and Running the Gesture Builder Application]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Creating a Gestures File]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Extracting the Gestures File from the SD Card]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Creating the Example Project]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Designing the User Interface]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Loading the Gestures File]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Registering the Event Listener]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Implementing the onGesturePerformed Method]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Testing the Application]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Configuring the GestureOverlayView]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Intercepting Gestures]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|Detecting Pinch Gestures]]
 +
#* [[Implementing Android Custom Gesture and Pinch Recognition|A Pinch Gesture Example Project]]<br><br>
 +
# [[An Introduction to Android Fragments]]
  
 
# [[An Android Master/Detail Flow Tutorial]]
 
# [[An Android Master/Detail Flow Tutorial]]

Revision as of 19:32, 26 June 2013

Table of ContentsNext
Introduction to Android 4.2 App Development Essentials


© 2013 Neil Smyth / Payload Media. This eBook is provided for personal use only. Unauthorized use, reproduction and/or distribution strictly prohibited. All rights reserved.


<google>BUY_ANDROID</google>


Table of Contents

  1. Introduction to Android 4.2 App Development Essentials
  2. Setting up an Android Development Environment
  3. Creating an Android Virtual Device (AVD)
  4. Creating an Example Android Application
  5. Testing Android Applications on a Physical Android Device with ADB
  6. An Overview of the Android Architecture
  7. The Anatomy of an Android Application
  8. Understanding Android Application and Activity Lifecycles
  9. Handling Android Activity State Changes
  10. Android Activity State Changes - An Example Application
  11. Saving and Restoring the User Interface State of an Android Activity
  12. Understanding Android Views, View Groups and Layouts
  13. Designing an Android User Interface using the Graphical Layout Tool
  14. Creating an Android User Interface in Java Code
  15. Using the Android GridLayout Manager in the Graphical Layout Tool
  16. Working with the Android GridLayout in XML Layout Resources
  17. An Overview and Example of Android Event Handling
  18. Android Touch and Multi-touch Event Handling
  19. Detecting Common Gestures using the Android Gesture Detector Class
  20. Implementing Android Custom Gesture and Pinch Recognition
  21. An Introduction to Android Fragments
  1. An Android Master/Detail Flow Tutorial