Home > Store

Android Development Patterns: Best Practices for Professional Developers

Register your product to gain access to bonus material or receive a coupon.

Android Development Patterns: Best Practices for Professional Developers

eBook (Watermarked)

  • Your Price: $25.59
  • List Price: $31.99
  • Includes EPUB and PDF
  • About eBook Formats
  • This eBook includes the following formats, accessible from your Account page after purchase:

    ePub EPUB The open industry format known for its reflowable content and usability on supported mobile devices.

    Adobe Reader PDF The popular standard, used most often with the free Adobe® Reader® software.

    This eBook requires no passwords or activation to read. We customize your eBook by discreetly watermarking it with your name, making it uniquely yours.

Description

  • Copyright 2016
  • Dimensions: 7" x 9"
  • Pages: 320
  • Edition: 1st
  • eBook (Watermarked)
  • ISBN-10: 0-13-392401-7
  • ISBN-13: 978-0-13-392401-5

“A must read for all developers that want to begin serious Android development.”
Justin Anderson, Freelance Android Developer

“From start to finish, this book contains a variety of great tips and insight into the most important attributes of Android design. This book will definitely be required reading for any of our future Android engineers.”
Cameron Banga, Cofounder, 9magnets, LLC

There’s a downside to Android’s amazing openness and versatility: it’s easy for developers to write code that’s inefficient, unreliable, insecure, or hard to maintain. In Android Development Patterns, enterprise Android developer Phil Dutson helps you leverage Android 5.0+’s amazing power without falling victim to those pitfalls. Dutson presents today’s most comprehensive set of patterns and procedures for building optimized, robust apps with Android 5.0+.

First, Dutson guides you through establishing a highly efficient development environment and workflow, and testing your app to ensure that your code works just as you expect. Then, he walks through the modern best practices for structuring apps, using widgets and components, and working with views.

You learn how to build apps that are easy to manage and update, deliver accurate and up-to-date information without wasting precious battery power, and take advantage of new hardware, such as Android Wear and Android TV. Dutson concludes by presenting powerful strategies for optimizing your apps and packaging them for distribution.

Coverage includes

  • Using testing to build more trustworthy, dependable, maintainable apps
  • Understanding subtle but critical differences between Android and traditional Java programming
  • Building consistent, modern user interfaces with views and layouts
  • Leveraging the proven MVC pattern to cleanly organize logic
  • Creating rich visual experiences with 3D graphics, animation, and media
  • Simplifying capture and use of location data with the new Locations API
  • Integrating optional hardware, such as Bluetooth, NFC, or USB
  • Building better apps with Google Play Services
  • Creating Android Wear notifications and apps
  • Tuning and improving apps with Google Analytics
  • Designing Android TV apps for the “ten foot view”

informit.com/aw | https://github.com/dutsonpa/adp-files

Sample Content

Table of Contents

Preface     xiv


1     Development Tools     1

Android Studio     1
     Installing Android Studio    2
     Using Android Studio    4
     Starting a New Project     6
Standalone SDK Tools    9
Android Device Emulation     10
     Android Virtual Device     11
     GenyMotion     12
     Xamarin Android Player     13
Version-Control Systems     14
     Subversion    14
     Git     14
     Mercurial     15
Summary     15


2     Testing and Debugging     17
Unit Testing     17
Integration Testing    20
Debugging     25
     Profiling    25
     Tracing    27
     Messaging    29
Summary    32


3     Application Structure    33
Manifests    34
Java     36
Res (Resources)     37
     Drawable     37
     Layout     39
     Menu     39
     Values     40
     Other Resources     41
Gradle     41
Summary     42


4    Components     45
Intents     45
     Intent Filters     46
     Broadcast Receivers     47
Activities     48
     Creating an Activity     48
     Activity Lifecycle    49
Fragments     52
     Creating a Fragment     52
     Communicating with Fragments     55
     Loaders    56
Summary     58


5    Views     59
The View Class     59
     The AnalogClock Subclass     60
     The ImageView Subclass     60
     The KeyboardView Subclass    60
     The MediaRouteButton Subclass    62
     The ProgressBar Subclass     62
     The Space Subclass     64
     The SurfaceView Subclass    64
     The TextView Subclass    65
     The TextureView Subclass     65
     The ViewGroup Subclass     66
     The ViewStub Subclass     68
Creating a Custom View     68
Summary    70


6     Layout    71
Layout Basics    71
     Layout Measurements    72
     Layout Coordinates     73
Layout Containers     74
     Linear Layout     74
     Relative Layout     76
     Table Layout     79
     Frame Layout     80
     WebView    82
Summary    83


7     App Widgets    85
App Widget Layouts    86
The AppWidgetProviderInfo Object     88
     App Widget Sizing    89
     Update Frequency    90
     Preview Image    90
     Widget Category     92
     Widget Category Layout    92
     Resizable Mode    93
     Sample AppWidgetProviderInfo Object    93
The AppWidgetProvider Class    94
Application Manifest Entries     96
Summary     97


8     Application Design: Using MVC     99
Model     100
View     101
Controller     102
Working Asynchronously     104
     AsyncTask     105
Summary     106


9    Drawing and Animation     107
Graphics     107
     Bitmaps     107
     NinePatch     109
     Drawables     111
     OpenGL ES     114
Animation     117
     View Animation    117
     Property Animation     118
     Drawable Animation     122
     Transition Framework     123
Summary     125


10     Networking     127
Accessing the Internet     127
     Network Detection     127
     Using an HTTP Client     129
Parsing XML     131
Handling Network Operations Asynchronously     133
Volley     135
Summary     138


11    Working with Location Data     139
Permissions     139
Google Play Services Locations API     148
Summary     153


12     Multimedia     155
Working with Audio     155
     Audio Playback    156
     Audio Recording     159
Working with Video     161
     Video Playback     162
Summary     165


13     Optional Hardware APIs     167
Bluetooth     167
     Enabling Bluetooth     168
     Discovering Devices with Bluetooth     169
     Connecting via Bluetooth Classic     171
     Communicating with BLE     173
Near Field Communication     176
     ACTION_NDEF_DISCOVERED     177
     ACTION_TECH_DISCOVERED     178
     ACTION_TAG_DISCOVERED     179
Device Sensors     181
     Detecting the Available Sensors     182
     Reading Sensor Data     183
Summary     185


14     Managing Account Data     187
Getting Accounts     187
Android Backup Service     188
Using Google Drive Android API     191
Using Google Play Games Services     195
     Working with Saved Games     196
Summary     199


15    Google Play Services     201
Adding Google Play Services     201
Using Google API Client     203
Google Fit     207
     Enable API and Authentication     207
     App Configuration and Connection    208
Nearby Messages API    209
     Enabling Nearby Messages     209
     Sending and Receiving Messages     210
Summary    214


16     Android Wear     217
Android Wear Basics     217
Screen Considerations     218
Debugging     221
     Connecting to an Emulator     221
     Connecting to a Wear Device     222
Communicating with Android Wear     224
     Notifications     224
     Sending Data     226
Summary     228


17     Google Analytics    229
Adding Google Analytics    229
Google Analytics Basics     232
     Events     233
     Goals     234
     Ecommerce     235
     Custom Timings     235
     Custom Dimensions    236
     Custom Metrics    236
Summary     237


18     Optimization     239
Application Optimization    239
     Application First     239
     Application Logging     241
     Application Configuration     242
Memory Management    243
     Garbage Collection Monitoring     245
     Checking Memory Usage    245
Performance     247
     Working with Objects     247
     Static Methods and Variables     248
     Enhanced for Loops     248
     float, double, and int     249
     Optimized Data Containers     249
Summary     249


19     Android TV     251
The Big Picture     251
     Ten-Foot View     252
     TV Capabilities     254
     Text, Color, and Bitmaps     255
Building an App     258
Emulation and Testing     261
Summary     263


20    Application Deployment     265
Preparing for Deployment     265
Production Checklist     266
     Certificate Keys     266
     Contact Email     266
     App Website     267
     External Services or Servers     267
     Application Icon     267
     Licensing     268
     Appropriate Package Name     268
     Verifying Permissions and Requirements     269
     Log and Debug Removal     270
     Removal of Excess Unused Assets     270
Preparing for Google Play     270
     Application Screenshots     271
     Promo Video     271
     High-Res Icon     271
     Feature Graphic     272
     Promo Graphic     272
     Banner for Android TV     272
     Getting Paid     272
APK Generation     273
Summary     274


Index     275

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020