Difference between revisions of "Android 4 App Development Essentials"
From Techotopia
Line 98: | Line 98: | ||
#* [[Understanding Android Application and Activity Lifecycles|Handling State Change]]<br><br> | #* [[Understanding Android Application and Activity Lifecycles|Handling State Change]]<br><br> | ||
# [[Handling Android Activity State Changes]] | # [[Handling Android Activity State Changes]] | ||
+ | #* [[Handling Android Activity State Changes|The Activity Class]] | ||
+ | #* [[Handling Android Activity State Changes|Dynamic State vs. Persistent State]] | ||
+ | #* [[Handling Android Activity State Changes|The Android Activity Lifecycle Methods]] | ||
+ | #* [[Handling Android Activity State Changes|Activity Lifetimes]]<br><br> | ||
+ | # [[Android Activity State Changes - An Example Application]] | ||
+ | #* [[Android Activity State Changes - An Example Application|Creating the State Change Example Project]] | ||
+ | #* [[Android Activity State Changes - An Example Application|Designing the User Interface]] | ||
+ | #* [[Android Activity State Changes - An Example Application|Overriding the Activity Lifecycle Methods]] | ||
+ | #* [[Android Activity State Changes - An Example Application|Enabling and Filtering the LogCat Panel]] | ||
+ | #* [[Android Activity State Changes - An Example Application|Running the Application]] | ||
+ | #* [[Android Activity State Changes - An Example Application|Experimenting with the Activity]] | ||
+ | #* [[Android Activity State Changes - An Example Application|Saving Dynamic State]]<br><br> | ||
+ | # [[Saving and Restoring the User Interface State of an Android Activity]] | ||
# [[Using the Android GridLayout Manager in the Graphical Layout Tool]] | # [[Using the Android GridLayout Manager in the Graphical Layout Tool]] |
Revision as of 18:16, 26 June 2013
Table of Contents | Next | |
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
- Introduction to Android 4.2 App Development Essentials
- Setting up an Android Development Environment
- System Requirements
- Installing the Java Development Kit (JDK)
- Windows JDK Installation
- Mac OS X JDK Installation
- Linux JDK Installation
- Downloading the Android Developer Tools (ADT) Bundle
- Installing the ADT Bundle
- Installation on Windows
- Installation on Mac OS X
- Installation on Linux
- Installing the Latest Android SDK Packages
- Making the Android SDK Tools Command-line Accessible
- Windows 7
- Windows 8
- Linux
- Mac OS X
- Updating the ADT
- Adding the ADT Plugin to an Existing Eclipse Integration
- Creating an Android Virtual Device (AVD)
- Creating an Example Android Application
- Testing Android Applications on a Physical Android Device with ADB
- An Overview of the Android Architecture
- The Anatomy of an Android Application
- Understanding Android Application and Activity Lifecycles
- Handling Android Activity State Changes
- Android Activity State Changes - An Example Application
- Saving and Restoring the User Interface State of an Android Activity
- Using the Android GridLayout Manager in the Graphical Layout Tool
- Introducing the Android GridLayout and Space Classes
- The GridLayout Example
- Creating the GridLayout Project
- Creating the GridLayout Instance
- An Overview of the GridLayout in the Graphical Layout Tool
- Adding Views to GridLayout Cells
- Implementing Cell Row and Column Spanning
- Changing the Gravity of a GridLayout Child
- Working with the Android GridLayout in XML Layout Resources
- An Android Master/Detail Flow Tutorial