Transferring Data Without Draining the Battery

In this class you will learn to minimize the battery life impact of downloads and network connections, particularly in relation to the wireless radio. This class demonstrates the best practices for scheduling and executing downloads using techniques such as caching, polling, and prefetching. You will learn how the power-use profile of the wireless radio can […]

Read More

Project Conventions Coding Standards Java/Android Content

Conventions We follow standard Java coding conventions. We add a few Android specific rules. Package and Import Statements The first non-comment line of most Java source files is a package statement. After that, import statements can follow. For example: package java.awt; import java.awt.peer.CanvasPeer; Order Import Statements The ordering of import statements is: Android imports Imports […]

Read More